File tree 3 files changed +4
-4
lines changed
doc/api/next_api_changes/behavior
examples/subplots_axes_and_figures
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ New `.Axes3D` objects previously added themselves to figures when they were
5
5
created, which lead to them being added twice if
6
6
``fig.add_subplot(111, projection='3d') `` was called. Now ``ax = Axes3d(fig) ``
7
7
will need to be explicitly added to the figure with ``fig.add_axes(ax) ``, as
8
- also needs to be done for normal `axes.Axes `.
8
+ also needs to be done for normal `. axes.Axes `.
Original file line number Diff line number Diff line change 144
144
# Still there remains an unused empty space between the subplots.
145
145
#
146
146
# To precisely control the positioning of the subplots, one can explicitly
147
- # create a `.GridSpec` with `Figure.add_gridspec`, and then call its
147
+ # create a `.GridSpec` with `. Figure.add_gridspec`, and then call its
148
148
# `~.GridSpecBase.subplots` method. For example, we can reduce the height
149
149
# between vertical subplots using ``add_gridspec(hspace=0)``.
150
150
#
Original file line number Diff line number Diff line change @@ -1068,8 +1068,8 @@ def subplot(*args, **kwargs):
1068
1068
"""
1069
1069
Add a subplot to the current figure.
1070
1070
1071
- Wrapper of `. Figure.add_subplot` with a difference in behavior
1072
- explained in the notes section.
1071
+ Wrapper of `~.matplotlib.figure. Figure.add_subplot` with a difference in
1072
+ behavior explained in the notes section.
1073
1073
1074
1074
Call signatures::
1075
1075
You can’t perform that action at this time.
0 commit comments