gnuplot标签未显示

时间:2012-11-05 11:43:41

标签: label gnuplot

我有很多文件可以生成一个图,因此为gnuplot写了一个小脚本。 我想在图表下方添加带标签的附加信息,但我的标签不会显示在生成的图像上。 谁有想法?

load.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

1 个答案:

答案 0 :(得分:2)

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