so I'm fairly new to gnuplot and I'm stumped by an invaild command error I get when I try to use stats on a file in gnuplot.
The command in question:
gnuplot> stats "file.dat" using 1
stats "file.dat" using 1
^
invalid command
The file works just fine with the plot command, as in:
gnuplot> plot "file.dat" using 1 with lines
plot "file.dat" using 1 with lines
The data file file.dat looks like this:
125.48 262.31
0.85 215.18
0.85 175.29
0.85 132.11
0.85 78.72
0.74 33.92
0.74 15.98
0.28 9.63
0.28 7.28
0.28 6.24
0.10 5.76
0.10 5.08
0.01 5.02
0.01 4.93
0.01 4.77
Thanks for any help you can offer!