|
From: theozh <th...@gm...> - 2016-04-20 19:54:59
|
Does the following give the desired result?
reset
splot "Data1.dat" u (0):0:1 w i ls 1,\
'' u (0):0:1 w l ls 1 not,\
"Data2.dat" u (1):0:1 w i ls 2,\
'' u (1):0:1 w l ls 2 not,\
"Data3.dat" u (2):0:1 w i ls 3,\
'' u (2):0:1 w l ls 3 not
Replace "Data1.dat" etc. with your filenames.
Continue with the terms (0),(1),(2),... according to your number of files.
It draws the data with impulses and again with lines in order to look
like the example you mentioned. Maybe there is a simpler way...
|