Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #4288 > unrolled thread

fence data gnuplot

Started bymfduqued <mfduqued@gmail.com>
First post2020-02-14 07:30 -0800
Last post2020-02-19 11:17 +0100
Articles 2 — 2 participants

Back to article view | Back to comp.graphics.apps.gnuplot


Contents

  fence data gnuplot mfduqued <mfduqued@gmail.com> - 2020-02-14 07:30 -0800
    Re: fence data gnuplot Jörg Buchholz <bookwood4new@freenet.de> - 2020-02-19 11:17 +0100

#4288 — fence data gnuplot

Frommfduqued <mfduqued@gmail.com>
Date2020-02-14 07:30 -0800
Subjectfence data gnuplot
Message-ID<afeb18a3-af31-4062-aa88-ef1ee1707445@googlegroups.com>
Hi community,

I have a file with 70 (rows) and 8 (columns), every 3 columns change this plot.
I plot as
splot "data" u 1:2:3 t "1", "" u 1:2:4 t "2"

But I want now to plot like fenceplots where the column 3 vs the column 1, and each plot this is separated a value.

How do I do this??, 
Thanks very much for ani suggestions 

[toc] | [next] | [standalone]


#4294

FromJörg Buchholz <bookwood4new@freenet.de>
Date2020-02-19 11:17 +0100
Message-ID<r2j20e$tkq$1@dont-email.me>
In reply to#4288
On 14.02.2020 16:30, mfduqued wrote:
> Hi community,
> 
> I have a file with 70 (rows) and 8 (columns), every 3 columns change
> this plot. I plot as splot "data" u 1:2:3 t "1", "" u 1:2:4 t "2"
> 
> But I want now to plot like fenceplots where the column 3 vs the
> column 1, and each plot this is separated a value.
> 
> How do I do this??, Thanks very much for ani suggestions
> 

May help this example?

Datafile 'fence.dat':
4   6   5   9   2   7   6
5   7   3   2   7   2   8
7   3   9   3   2   1   0
7   5   2   8   1   2   8
5   2   9   4   2   6   1

set xrange [0:8]
set xyplane relative 0
splot for [i=1:7] 'fence.dat' u (0.0+i):0:i:(0.0):i w zerrorfill

Jörg

[toc] | [prev] | [standalone]


Back to top | Article view | comp.graphics.apps.gnuplot


csiph-web