I'm using gnuplot to plot some data in terminal, but, I can't understand what it is I'm actually plotting..
The data that I am plotting is as follows:
0 0
0 0
0 0
0 0
0 0
0 0
0 0
-4.30073 11.0396
0.597324 0.717791
0.994737 0.0914964
0.461595 -0.0463647
0.823025 -0.028436
0.175018 -0.325786
-0.162711 -0.095196
0.162538 -0.0879469
-0.207604 -0.0375564
-0.428694 0.406283
-0.509088 -0.863523
-1.98853 -0.834989
-0.81263 -0.44062
And the result is as follows:
Is gnuplot therefore just plotting the first columns of data, or performing a calculation on the data in order to plot?
The command that I'm using is as follows:
plot './data.txt' using 2 with lines
Any help would be greatly appreciated