as you can see below the yaxis has a large gap between 0 and 6*10^5... is there a way to fix that? There should also be data below zero but the scale doesn't show it.
The plot I'm talking about:
as you can see below the yaxis has a large gap between 0 and 6*10^5... is there a way to fix that? There should also be data below zero but the scale doesn't show it.
The plot I'm talking about:
You can modify the yrange
by
set yrange [0:100]
OR
set yrange [0:]
OR during the plot
plot[][0:] 'valami.dat'
etc...
EDIT
If you want to do it automatic, you can do:
stat 'valami.dat'
plot[][STATS_y_min:] 'valami.dat'
OR
plot 'valami.dat'
plot[][GPVAL_DATA_Y_MIN:] 'valami.dat'