Hello all,
I know this should be pretty simple, but I haven't been able to find a similar example.
I need to plot different ranges of a datafile differently, but on the same graph.
For instance, say my datafile represents a function with x and y values. I want to plot the first N values using a style like lines, and then the next M values using a different style, like points.
I was thinking I would need a plot command similar to this:
plot [1:5] "my.data" using 1:2 with lines, [6:12] using 1:2 with points, [13:19] using 1:2 with lines
Essentially I want to distinguish different areas of the functions.
Any ideas? I am sorry if it sounds like I'm rambling but I am quite stumped.
Thanks in advance!