• fence data gnuplot

    From mfduqued@21:1/5 to All on Fri Feb 14 07:30:52 2020
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?J=c3=b6rg_Buchholz?=@21:1/5 to mfduqued on Wed Feb 19 11:17:52 2020
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)