if I have a plot let us say
Plot[x^2 - 5 x - 10, {x, 0, 8}]
I want o check if there is a way to know the automatic plot range and to add or subtract from that range as I need.
I will assume something fictitious like this:
Plot[x^2 - 5 x - 10, {x, 0, 8}, PlotRange -> (Automatic + {0, 10})]
is there a way to do something like this?


yaxis?Plot[x^2 - 5 x - 10, {x, 0, 8}, PlotRangePadding -> {Automatic, {Automatic, 8}}]? – Kuba May 25 '14 at 15:20PlotRange?" – Alexey Popkov May 25 '14 at 15:31Tan[x]. Aboutxaxis, isn't it the second argument ofPlot? – Kuba May 25 '14 at 16:08AbsoluteOptions[]or some such to get the range then re-plot. – george2079 May 25 '14 at 17:32