I have a problem handling data using gnuplot. My data has different column number per line. I want to plot with X-axis of the first column and Y-axis of the last. The last columns are always different every line.
For example, my data looks like that (my.dat)
1 2
2 1 3
3 4 4
4 5
5 2 1 3 6
plot 'my.dat' us 1:(lastcolumn) w l
Before reading in gnuplot, I can pre-process of the data. But my gnuplot is windows version, I cannot use awk or any parsing program. So I hope it handles only into gnuplot. Is that possible?
Thanks