@@ -782,9 +782,9 @@ def axes(arg=None, **kwargs):
782
782
- 4-tuple of floats *rect* = ``[left, bottom, width, height]``.
783
783
A new axes is added with dimensions *rect* in normalized
784
784
(0, 1) units using `~.Figure.add_axes` on the current figure.
785
- - `. Axes`: This is equivalent to `.pyplot.sca`. It sets the current
786
- axes to *arg*. Note: This implicitly changes the current figure to
787
- the parent of *arg*.
785
+ - `~matplotlib.axes. Axes`: This is equivalent to `.pyplot.sca`.
786
+ It sets the current axes to *arg*. Note: This implicitly
787
+ changes the current figure to the parent of *arg*.
788
788
789
789
.. note:: The use of an Axes as an argument is deprecated and will be
790
790
removed in v3.0. Please use `.pyplot.sca` instead.
@@ -898,16 +898,16 @@ def subplot(*args, **kwargs):
898
898
899
899
subplot(nrows, ncols, index, **kwargs)
900
900
901
- In the current figure, create and return an `. Axes`, at position *index*
902
- of a (virtual) grid of *nrows* by *ncols* axes. Indexes go from 1 to
903
- ``nrows * ncols``, incrementing in row-major order.
901
+ In the current figure, create and return an `~matplotlib.axes. Axes`,
902
+ at position *index* of a (virtual) grid of *nrows* by *ncols* axes.
903
+ Indexes go from 1 to ``nrows * ncols``, incrementing in row-major order.
904
904
905
905
If *nrows*, *ncols* and *index* are all less than 10, they can also be
906
906
given as a single, concatenated, three-digit number.
907
907
908
908
For example, ``subplot(2, 3, 3)`` and ``subplot(233)`` both create an
909
- `. Axes` at the top right corner of the current figure, occupying half of
910
- the figure height and a third of the figure width.
909
+ `matplotlib.axes. Axes` at the top right corner of the current figure,
910
+ occupying half of the figure height and a third of the figure width.
911
911
912
912
.. note::
913
913
0 commit comments