为什么当我制作这个gnuplot代码时,它的工作原理是:
set terminal postscript enhanced color
set output '../figs/ins_local.ps'
set title "Result"
set logscale y
set xrange [50:100]
set xtics 5
#set xlabel "Insertion"
#set ylabel "Time (in microseconds) "
plot sin(x)
但是当我用:{/ p>更改plot sin(x)
时
plot "../myFile.final" with lines title "Somethings" lw 3 linecolor rgb "#29CC6A"
我有这个错误:
plot "../myFile.final" with lines title "Somethings" lw 3 linecolor rgb "#29CC6A"
^
"local.gnuplot", line 16: all points y value undefined
我有一个专栏!它代表yrange
。 xrange
由行数表示!我的数据点的例子:
125456
130000
150000
x的第一个点是1,x的第二个点是2,最后是3.现在我想用比例50,55,60来表示这个1,2,3!
答案 0 :(得分:20)
这里有一些可能出错的地方 - 没有看到你的数据文件是不可能的。我能想到的一对夫妇是:
第2列中的所有数据点都小于或等于0(因为log(0)未定义而得到错误消息)
第一列中没有任何点在50到100之间。在这种情况下,由于set xrange [50:100]
您的数据文件只有1列...在这种情况下,gnuplot看不到任何y值。 (更改为plot '../myFile.final' u 1 ...
)
修改强>
好的,现在我看到了你的数据文件,问题肯定是你set xrange [50:60]
但你的数据的xrange只从0到2运行(gnuplot从0开始数据文件索引)。解决此问题的最简单方法是使用伪列0.伪列0只是从0开始的行号(如果执行plot 'blah.txt' using 1
,则gnuplot在x轴上绘制。这是一个示例:
scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x
plot 'test.dat' using (scale_x($0,50,60,0,2)):1 w lines title "scaled xrange"
请注意,如果您不知道使用规范是如何工作的,那么前面带有$的数字就是整个列上的元素操作。例如:
plot 'foo.bar' using 1:($2+$3)
将绘制第一列加上数据文件每一行中第二和第三个元素的总和。
此解决方案假设您知道数据文件中x的最大值(在这种情况下,3-1 = 2 - [三点,0,1,2])。如果您不知道数据点的数量,可以使用shell magic或直接从gnuplot获取。第一种方式稍微容易一点,虽然不那么便携。我将展示两者:
XMAX=`wc -l datafile | awk '{print $1-1}'`
scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x
plot 'test.dat' using (scale_x($0,50,60,0,XMAX)):1 w lines title "scaled xrange"
第二种方式,我们需要对数据进行两次传递,让gnuplot获取最大值:
set term push #save terminal settings
set term unknown #use unknown terminal -- doesn't actually make a plot, only collects stats
plot 'test.dat' u 0:1 #collect stats
set term pop #restore terminal settings
XMIN=GPVAL_X_MIN #should be 0, set during our first plot command
XMAX=GPVAL_X_MAX #should be number of lines-1, collected during first plot command
scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x
plot 'test.dat' using (scale_x($0,50,60,XMIN,XMAX)):1 w lines title "scaled xrange"
我认为为了完整性,我应该说在gnuplot 4.6中也更容易做到(我现在没有安装它,所以下一部分只是来自我对文档的理解):
stats 'test.dat' using 0:1 name "test_stats"
#at this point, your xmin/xmax are stored in the variables "test_stats_x_min"/max
XMIN=test_stats_x_min
XMAX=test_stats_x_max
scale_x(x,xmin,xmax,datamin,datamax)=xmin+(xmax-xmin)/(datamax-datamin)*x
plot 'test.dat' using (scale_x($0,50,60,XMIN,XMAX)):1 w lines title "scaled xrange"
Gnuplot 4.6看起来很酷。我很快就会开始玩它。