Gnuplot 画多条线

set terminal png truecolor size 550,250    #指定输出成png图片,且图片大小为550×250,需要ligpng支持,采用默认颜色设定
set output "aa.png"    #指定输出png图片的文件名
set autoscale    #轴向标记自动控制
set xdata time    #X轴数据格式为时间
set timefmt "%H:%M"    #时间输入格式为"小时:分钟"
set style data lines    #数据显示方式为连线
set xlabel "time per day"    #X轴标题
set ylabel "Mbps"    #Y轴标题
set title "image.tuku.china.com flow"    #图片标题
set grid    #显示网格
plot "aa.txt" using 1:2 title "access_flow",'' using 1:3 title "%sys",'' using 1:4 title "%sys"    #从aa.txt文件中读取第一列和第二列作为X轴和Y轴数据,示例名"log_flow"

plot "aa.txt" using 1:2 title "access_flow",'' using 1:3 title "%sys",'' using 1:4 title "%sys"

aa.txt 是数据存储的文件,第一个using直接跟在文件名后面,但是后面的using 必须在前面加上两个单引号 '',否则出错。

示例图如下:

Gnuplot 画多条线_第1张图片

你可能感兴趣的:(Gnuplot,Gnuplot,画多条线)