带有/误差条的Gnuplot直方图

时间:2014-08-28 14:07:00

标签: graphics gnuplot histogram

我试图用Gnuplot制作条形图/直方图,但我似乎无法得到错误条。

这是我的代码:

set style data errorbars 
set style histogram errorbars gap 2 lw 1
set style data histograms
plot "ctcf.dat" using 2:3:3:xtic(1)

和数据:

 #Label  Mean        Error
 168-B  24778.23544 33467.8754
 168-S  34067.82997 35542.62473
 168-B  22519.51553 30835.37332
 168-S  112976.1825 143760.3467

但他们错了:

enter image description here

我做错了什么?

1 个答案:

答案 0 :(得分:2)

使用错误栏绘制直方图时,您需要在using语句中仅提供两列。第一列给出了框高度,第二列是±<error>

set style histogram errorbars gap 1 lw 1
set style data histograms
plot "ctcf.dat" using 2:3:xtic(1)

enter image description here