I have file with two columns like:
1.2, 3.4
5.6, 7.8
...
I want gnuplot to plot both columns in one coordinate system like it would, if there was only one column. Meaning: X-axis shows the line numbers, y-axis the values.
Example: The first two points of the two lines are (0, 1.2)and (0, 3.4); the second points (1, 5.6) and (1, 7.8).
I do not want the two columns being treated as x and y values, like it would if just go for plot "data.txt".