|
From: Hans-Bernhard B. <br...@ph...> - 2005-03-13 19:28:27
|
Noel Faux wrote:
> x-axis is the lengths (col1),
> y-axis is the values (cols 3-5, 7-9)
How exactly do you want to show three columns of data on one axis?
> z-axis is each series (ce and dm)
> The front plot would be the 2D histogram of Cols 1,3-5 and directly
> behind (along the z-axis) it the plot of cols 1, 7-9.
Then you'll have to plot your datafile at least twice. A very rough
first approximation might be:
plot 'file' u 1:3:(1.0) title 'ce' with histeps, \
'' u 1:7:(2.0) title 'dm' with histeps
It's still a mystery to me what it might be you want to do with
the other 4 columns of data.
|