File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 26
26
In the explicit object-oriented (OO) interface we directly utilize instances of
27
27
:class:`axes.Axes` to build up the visualization in an instance of
28
28
:class:`figure.Figure`. In the implicit interface, inspired by and modeled on
29
- MATLAB, uses an global state-based interface which is is encapsulated in the
29
+ MATLAB, we use a global state-based interface which is encapsulated in the
30
30
:mod:`.pyplot` module to plot to the "current Axes". See the :doc:`pyplot
31
31
tutorials </tutorials/introductory/pyplot>` for a more in-depth look at the
32
32
pyplot interface.
33
33
34
34
Most of the terms are straightforward but the main thing to remember
35
35
is that:
36
36
37
- * The Figure is the final image that may contain 1 or more Axes.
38
- * The Axes represent an individual plot (don't confuse this with the word
39
- " axis" , which refers to the x/y axis of a plot).
37
+ * The `. Figure` is the final image, and may contain one or more `~.axes. Axes` .
38
+ * The `~.axes. Axes` represents an individual plot (not to be confused with
39
+ `~. axis.Axis` , which refers to the x/y axis of a plot).
40
40
41
41
We call methods that do the plotting directly from the Axes, which gives
42
42
us much more flexibility and power in customizing our plot.
43
43
44
44
.. note::
45
45
46
- In general prefer the explicit interface over the implicit pyplot interface
46
+ In general, use the explicit interface over the implicit pyplot interface
47
47
for plotting.
48
48
49
49
Our data
You can’t perform that action at this time.
0 commit comments