所以我对gnuplot相当新,当我尝试在gnuplot中的文件上使用stats时,我遇到了一个invaild命令错误。
有问题的命令:
gnuplot> stats "file.dat" using 1
stats "file.dat" using 1
^
invalid command
使用plot命令文件可以正常工作,如:
gnuplot> plot "file.dat" using 1 with lines
plot "file.dat" using 1 with lines
数据文件file.dat如下所示:
125.48 262.31
0.85 215.18
0.85 175.29
0.85 132.11
0.85 78.72
0.74 33.92
0.74 15.98
0.28 9.63
0.28 7.28
0.28 6.24
0.10 5.76
0.10 5.08
0.01 5.02
0.01 4.93
0.01 4.77
感谢您提供的任何帮助!
答案 0 :(得分:1)
stats
命令仅在4.6.0版本之后可用。在以前的版本中,只有在绘图后才能访问某些数据信息。这包括例如确切的数据范围,可通过变量GPVAL_DATA_X_MIN
,GPVAL_DATA_X_MAX
等获取。使用
plot 'file.dat' using 1
show variables all
查看可用变量。然后你可以做类似
的事情plot 'file.dat' using 1
# do something with GPVAL_*
replot