2014-08-28 83 views
2

我試圖用Gnuplot製作條形圖/直方圖,但我似乎無法得到錯誤欄出來。Gnuplot直方圖w /錯誤酒吧

這是我的代碼:

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

我在做什麼錯?

回答

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

+1

有什麼辦法在X標籤居中盒子? – Charon 2014-08-28 14:37:10

+1

是的,使用'gap 1'。如果您想改變框寬,請使用例如'設置框寬0.8相對'來得到一個更小的盒子。 – Christoph 2014-08-28 14:42:42

+0

謝謝!還有一個問題:我如何爲特定的盒子着色? – Charon 2014-08-28 14:43:52