I have data in the form:
1.23420394 3.2342423 4.2390424 1.2423424 3.3243242 1.2342522 3.4092843
8.92348209 2.3940284 4.21313 2.340242 3.342424 3.9875894 1.3423434
and it goes on for a long list. I took the data from excel and exported it to a txt file.
I am trying to plot this is gnuplot with:
plot for [col=2:7] "filename.txt" using 1:col
It first wasn't working at all until i went in manually and deleted all invisibles and replaced them with spaces. Now, it only recognizes the first line. Gnuplot uses the first column as x and the rest of the columns as corresponding y values. I'm not sure why this happens.