2012-06-13 94 views
0

,我有以下數據:gnuplot的,yerrorbar,文本x軸

t4.8k 1.84 1.86 1.83 
t5.8k 1.82 1.84 1.8 
t7.10k 1.79 1.8  1.77 
t8.8k 1.8  1.84 1.76 

我需要使用yerror酒吧GNU情節繪製此。
Column1 - 數據集名稱。這是xaxis比例。 列2 - Y型平均 欄3 - Y型最大 Column4 - Y型閔

這裏是我使用的繪圖代碼:

plot "chameleonConfidence.dat" using xtic(1):2:4:3 title "Ratio of Time Taken" with yerrorbars 

但是這給了我下面的錯誤

警告:空x範圍[4.94066e-324:4.94066e-324],調整爲[4.94066e-324:4.94066e-324] 「chameleonConfidence.gplot」,第15行:x_min不應等於x_max!

有人可以幫助我嗎?

回答

1

這適用於我。

set xrange [-1:4] 
TITLE="Ratio of Time Taken" 
plot "chameleonConfidence.dat" using ($0):2:4:3:xticlabels(1) with yerrorbars title TITLE 

在文件中xtic功能不能代替的x值 - 這是一個額外的AUTOMAGIC字段,您可以添加到使用規範添加您軸上xticlabels。基本上,您只需要將行號($0)作爲x值,然後全部設置(將xtic(1)移至您的使用規範的末尾)