As you can see in this post gnuplot "stats" command unexpected min & "out of range" results, gnuplot stats take as the minimum value the minimum non-negative number avalaible in the column.
How can I include the negative numbers? My column has negative numbers and I want to have a negative number as a minimum for applying to the axis range.
Btw, I'm calling:
stats mytextfile u 2:3 nooutput
But in fact later I have to call it again because I want to have the min and max values from 4 columns. Can I do it at once? Or do I have to do as I'm doing the following?:
stats mytextfile u 2:3 nooutput
do whatever
stats mytextfile u 4:5 nooutput
do whatever