gnuplot 畫線:全國人口出生率 死亡率 自然增長率
全國人口出生率 死亡率 自然增長率 在國家統(tǒng)計(jì)局 www.stats.gov.cn 查的
BDC.txt 數(shù)據(jù)格式如下:
年份 出生率 死亡率 自然增長率
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'