我有很多文件要为其生成绘图,因此为 gnuplot 编写了一个小脚本。我想在图表下方添加带有标签的附加信息,但我的标签未显示在生成的图像上。有人想出主意吗?
加载.plt:
# template.gnuplot
set terminal png
filename = "results-05112012-".i.".dat"
plotfile = "results-05112012-".i.".png"
print filename." ".plotfile
set grid
set title "EER""
set output plotfile
set label "m = 20" at 0, 3 front tc rgb "#ffffff"
plot[0.35:0.75][0:100] filename using 1:6 title "FAR" w lp, filename using 1:7 title "FRR" w lp
unset output
unset label
i=i+1
if(i <= n) reread