我正在尝试从我的.dat文件的最后一行设置我的gnuplot图表的标题,但我不知道该怎么做。
我的.dat文件如下:
Column1 Column2
1 0.5
2 1.5
3 2.5
4 3.5
5 4.5
6 5.5
Average is ??????
有人知道使用最后一行文字设置标题的命令吗?
答案 0 :(得分:2)
gnuplot允许shell样式的反引号扩展。将它与unix实用程序tail
相结合应该可以正常工作:
set title "`tail -1 myfile.dat`"
plot 'myfile.dat' u 1:2