如何在gnuplot中并排绘制带有错误栏的两个文件?

时间:2019-07-19 14:11:17

标签: graph gnuplot

我有两个三列的文件。第一列是X,第二列是Y-平均值,第三列是误差。

我需要绘制这两个文件以比较它们之间的错误。我可以绘图,但误差线重叠。我需要他们并肩站立。

存档1

10 0.15127 0.0986
30 0.14606 0.10022
60 0.16739 0.10298

存档2

10  0.19177 0.10253
30  0.17864 0.12178
60  0.18111 0.11272

我能画出什么

sample

我需要什么 我需要将两个类别与显示并显示正负误差的条形并排显示。 Sample

1 个答案:

答案 0 :(得分:0)

我们将使用行号(第0列,缩写$ 0)作为x坐标,并将第二组值偏移x上的1/10单位

set offset 0.5, 0.5      # put whitespace on both sides of the data
set yrange [0:1]
plot 'ar1' using ($0):2:3:xtic(1) with yerrrorbars, \
     'ar2' using ($0+0.1):2:3 with yerrorbars

enter image description here