gnuplot 画线:全国人口出生率 死亡率 自然增长率

来源:互联网 发布:网络安全工程师 英文 编辑:程序博客网 时间:2024/04/29 21:31

全国人口出生率 死亡率 自然增长率 在国家统计局 www.stats.gov.cn 查的

BDC.txt 数据格式如下:

年份 出生率 死亡率 自然增长率
1952 37.00 17.00 20.00
1957 34.03 10.80 23.23
1962 37.01 10.02 26.99

gnuplot Code:

cd 'd:/gnuplot/demo'
set term wxt font "C:/WINDOWS/Fonts/SIMSUN.TTC,10"
set key left bottom
set style data lines
set title "全国人口出生率 死亡率 自然增长率"
set ylabel "单位:‰"
set yrange [0:]
plot 'BDC.txt' using 1:2 t '人口出生率'
replot 'BDC.txt' using 1:3 t '死亡率'
replot 'BDC.txt' using 1:4 t '自然增长率'
save 'bdc.plt'