我的图最初看起来像这样:
没有ERRORBARS
但是有了错误栏,我得到了这样的东西:
使用errorbars
当我的描述中,这显然不是同一张图,我只是添加了"使用errorbars"。
我的代码如下:
plot "m20gnu.txt" using 1:2 title"Massa 20 g" pt 1 ps 0.8 lt 9,f(x) title "Best passende rechte bij massa 20 g"
和with errorbars
:
plot "m20gnu.txt" using 1:2 title"Massa 20 g" with errorbars pt 1 ps 0.8 lt 9,f(x) title "Best passende rechte bij massa 20 g"
数据文件看起来像这样:
0.16975 0.058823529 0.005 1
0.165 0.061728395 0.005 1
0.1415 0.047169811 0.005 1
0.13825 0.048543689 0.005 1
0.13975 0.045454545 0.005 1
0.1265 0.054945055 0.005 1
0.146791667 0.052083333 0.005 1
有人知道这里出了什么问题吗?非常感谢
在没有错误键的情况下绘制时,您的 using 1:2
是:将第一列用作x,第二列用作y值。
现在,绘制with errorbars
需要三个值。因此,再次使用相同的using
语句,您缺少一个值。根据所选的绘图样式,GNUPLOT试图猜测第三个值,如果您不指定全部。yerrorbars
的文档说:
2 columns: [implicit x] y ydelta
3 columns: x y ydelta
4 columns: x y ylow yhigh
在您的情况下
plot "m20gnu.txt" using 1:2:3 with errorbars
应该工作。