1 | initial version |
Is this example from the docs what you want? http://www.sagemath.org/doc/reference/sage/plot/plot.html#sage.plot.plot.Graphics.fontsize
2 | No.2 Revision |
Is this example from the docs what you want? http://www.sagemath.org/doc/reference/sage/plot/plot.html#sage.plot.plot.Graphics.fontsize
Or even just plot(x^2,(x,0,2), fontsize=20)
3 | No.3 Revision |
Is this example from the docs what you want? http://www.sagemath.org/doc/reference/sage/plot/plot.html#sage.plot.plot.Graphics.fontsize
Or even just plot(x^2,(x,0,2), fontsize=20)
Note that these answers are for sage commands. If you are looking for how to deal with matplotlib plots, it might be better to post to the matplotlib help list. Or personally, I usually just look at the matplotlib gallery (http://matplotlib.sourceforge.net/gallery.html) and find something close to what I want.