这个例子主要用 replot 画图
福彩双色球开奖数据可视化:http://www.gdfc.org.cn/datas/history/twocolorball/history_1.html
001 03 09 15 20 27 29 01
002 04 21 23 31 32 33 04
003 06 10 11 28 30 33 12
省略
150 03 08 14 22 24 32 09
151 04 05 08 11 21 27 08
152 08 13 15 20 21 25 12
手工脚本 cp.gnu 如下
cd 'D:/gnuplot/demo' set xrange [0:160] set yrange [0:35] plot 'cp2014.txt' using 1:2 t 'r1' replot 'cp2014.txt' using 1:3 t 'r2' replot 'cp2014.txt' using 1:4 t 'r3' replot 'cp2014.txt' using 1:5 t 'r4' replot 'cp2014.txt' using 1:6 t 'r5' replot 'cp2014.txt' using 1:7 t 'r6' replot 'cp2014.txt' using 1:8 t 'bl' save 'cp.plt'
以后执行 cp.plt
原文地址:http://blog.csdn.net/belldeep/article/details/42360307