I have a data file with interleaving data rows from different devices.
Now, I'd like to plot data from one devices with linepoints
and use this to filter only the device of interest:
plot 'datafile' using (<someCondition> ? $1 : 1/0):2
Now, gnuplot does not connect the points because there is always some invalid data inbetween.
Is it possible to make gnuplot to connect my points?
By the way: This is a Windows machine, so an external sed/awk/whatever command is no option.