Gnuplot, yerrorbar, text as x axis

Posted by The Flying Dutchman on Stack Overflow See other posts from Stack Overflow or by The Flying Dutchman
Published on 2012-06-13T04:12:19Z Indexed on 2012/06/13 4:40 UTC
Read the original article Hit count: 160

Filed under:

I have the following data:

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

I need to plot this in GNU plot using yerror bars.
Column1 - dataset name. This is the xaxis scale. Column2 - Y-Mean Column3 - Y-Max Column4 - Y-Min

Here is the plotting code that I use:

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

But this gives me the following error

Warning: empty x range [4.94066e-324:4.94066e-324], adjusting to [4.94066e-324:4.94066e-324] "chameleonConfidence.gplot", line 15: x_min should not equal x_max!

Can someone help me with this?

© Stack Overflow or respective owner

Related posts about gnuplot