16 May 2014 09:00
gnuplot / datafile (2E)
by sylvainulgYeah! On a Unix system, you can have gnuplot doing the pre-processing for you: no need to duplicate intermediate version of your raw input files ^o^
gnuplot> plot "< head -10 test.dat" using 1:2 with lines
gnuplot> plot "< tail -3 test.dat" using 1:2 with lines
...
1
(1 marks)