我目前正在尝试使用gnuplot绘制数据。我在一个文件夹中有几个.dat文件,我希望使用一些简单的命令/脚本绘制我的所有数据(见下文)。我怎样才能使它发挥作用?
我目前正在使用这件作品:
#!/usr/bin/gnuplot
set terminal postscript eps enhanced color
set output "DMF-10-8-.eps"
set xrange[1:10]
set yrange[0:1]
plot "DMF-10-8.dat" using 1:2 with lines title "XXX", "DMF-10-8-wmnuy9.dat" using 1:2 with lines title "YYY"