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

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

全国人口出生率 死亡率 自然增长率 在国家统计局 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'

你可能感兴趣的:(gnuplot 画线:全国人口出生率 死亡率 自然增长率)