|
From: Hans-Bernhard B. <br...@ph...> - 2005-07-26 18:50:06
|
Venkateswaran, Bhaskar wrote:
> I want to plot a bar graph and this is the snippet I tried:
> set xtics ("AAA" 1, "BBB" 2, "CCC" 3, "DDD" 4)
The numbers in there are off by one --- you want to use 0,...,3 instead.
> plot 'values.dat' using 1:2 with boxes
And this one is completely wrong. You must use the data point count
pseudo column numer 0, i.e. either
plot 'values.dat' using 2 with boxes # automatically
or
plot 'values.dat' using 0:2 with boxes
[If you can upgrade to the CVS version, this kind of plot will be a
*lot* simpler.]
|