How can I limit the autoscaling of gnuplot, so that, as example for the y-max, it is at least a certain value and it would autoscale up to fixed \"limit\"?
From loo
I don't think it is possible, either you have autoscaling on no-, min- or max-, or both axis i.e.:
set yrange [FIXED_MIN : FIXED_MAX] set yrange [ * : FIXED_MAX] set yrange [FIXED_MIN : *] set yrange [ * : ]
Respectively.