0

我有很多文件要为其生成绘图,因此为 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
4

1 回答 1

2

我可以看到标签可能不会出现的两个原因。一种是标签位于不在绘图区域 [0.35:0.75][0:100] 内的点 (0,3)。另一个是标签是白色的(#ffffff)。

于 2012-11-05T13:29:51.107 回答