1 | initial version |
Typing
sage: plot?
gives you the documentation for plot
.
One of the first paragraphs in that documentation says
Type "plot.options" for a dictionary of the default options for
plots. You can change this to change the defaults for all future
plots. Use "plot.reset()" to reset to the default options.
Also, if you do
sage: p = plot(x^2, (x,0,1))
and then
sage: p?
you will get more information about Graphics objects, including how to get log scale on the axes etc.