Sorry for the awkward phrasing of the question, I'm not sure what to call it.
Basically, I want to plot multiple data sets on the same XY graph (so they can be compared to each other). I want the points of a given data set to be connected by lines (as the XY graph does by default), but I don't want a line to connect them to the following data set (that is, if I pass it data set 1 and then data set 2 a little later, I don't want a line connecting the last point of data set 1 to connect to the first point of data set 2).
For example:
produces
because it's resetting every time by default, I believe. If I make it not reset:
all the data sets remain plotted (like I want), but you get that undesirable line I was talking about:
So what can I do? I don't know if I should use the express XY graph thing in this situation.
If I had to make a wild guess as to a solution, I could do something like, just do the 2nd thing I did, but in between data sets, set a property of the plot style (like the line color or width) such that the connecting line (between data sets) just isn't visible.
However there's probably a smarter way. Can anyone help me? thank you.