gnuplot: plotting a file with 4 columns all on y-axis
You can plot different columns of the same file like this: plot ‘file’ using 0:1 with lines, ” using 0:2 with lines … (… means continuation). A couple of notes on this notation: using specifies which column to plot i.e. column 0 and 1 in the first using statement, the 0th column is a pseudo … Read more