プロットを生成するファイルがたくさんあるので、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