I was wondering how I can plot rows (within a
space delimited file) against each other.
As far as I understand with GNUplot one can
plot columns of data, e.g.
plot 'filename' u 1:3 not w lines.
Is there a syntax to specify the n-th vs.
m-th row of the same file?
yours sincerely,
Varqa Khadem
> I was wondering how I can plot rows (within a
> space delimited file) against each other.
[...]
> Is there a syntax to specify the n-th vs.
> m-th row of the same file?
No. You'll have to transpose the file with an external tool before
presenting it to gnuplot.
The reason is that gnuplot wants to read the file sequentially,
datapoint for datapoint. With a file organized into rows instead of
columns, it can't do that.
--
Hans-Bernhard Broeker (bro...@physik.rwth-aachen.de)
Even if all the snow were burnt, ashes would remain.
No, there isn't. You'll have to use some external tool to transpose your
data.
Sorry.
Dick Crawford, aka craw...@arete.com