1 | initial version |
The basic answer to "where can I find the documentation" is to use Sage's introspection: that is, evaluate g.matplotlib?
. This method is also in the reference manual: https://doc.sagemath.org/html/en/reference/plotting/sage/plot/graphics.html#sage.plot.graphics.Graphics.matplotlib. The ref manual entry is the same thing that you get from g.matplotlib?
, and it also accessible from within Sage by running browse_sage_doc(g.matplotlib)
.
2 | No.2 Revision |
The basic answer to "where can I find the documentation" is to use Sage's introspection: that is, evaluate g.matplotlib?
. This method is also in the reference manual: https://doc.sagemath.org/html/en/reference/plotting/sage/plot/graphics.html#sage.plot.graphics.Graphics.matplotlib. The ref manual entry is the same thing that you get from g.matplotlib?
, and it also accessible from within Sage by running browse_sage_doc(g.matplotlib)
or help(g.matplotlib)
.
3 | No.3 Revision |
The basic answer to "where can I find the documentation" is to use Sage's introspection: that is, evaluate g.matplotlib?
. This method is also in the reference manual: https://doc.sagemath.org/html/en/reference/plotting/sage/plot/graphics.html#sage.plot.graphics.Graphics.matplotlib. The ref manual entry is the same thing that you get from g.matplotlib?
, and it also accessible from within Sage by running browse_sage_doc(g.matplotlib)
or help(g.matplotlib)
.: same information, just formatted differently.