@@ -1112,6 +1112,14 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
11121112 because for the latter it's not clear if it refers to a single
11131113 `~.axes.Axes` instance or a collection of these.
11141114
1115+ See Also
1116+ --------
1117+ .pyplot.figure
1118+ .pyplot.subplot
1119+ .pyplot.axes
1120+ .Figure.subplots
1121+ .Figure.add_subplot
1122+
11151123 Examples
11161124 --------
11171125 ::
@@ -1152,14 +1160,6 @@ def subplots(nrows=1, ncols=1, sharex=False, sharey=False, squeeze=True,
11521160 # and clears it if it already exists.
11531161 fig, ax = plt.subplots(num=10, clear=True)
11541162
1155- See Also
1156- --------
1157- .pyplot.figure
1158- .pyplot.subplot
1159- .pyplot.axes
1160- .Figure.subplots
1161- .Figure.add_subplot
1162-
11631163 """
11641164 fig = figure (** fig_kw )
11651165 axs = fig .subplots (nrows = nrows , ncols = ncols , sharex = sharex , sharey = sharey ,
@@ -1570,6 +1570,13 @@ def rgrids(*args, **kwargs):
15701570 **kwargs
15711571 *kwargs* are optional `~.Text` properties for the labels.
15721572
1573+ See Also
1574+ --------
1575+ .pyplot.thetagrids
1576+ .projections.polar.PolarAxes.set_rgrids
1577+ .Axis.get_gridlines
1578+ .Axis.get_ticklabels
1579+
15731580 Examples
15741581 --------
15751582 ::
@@ -1579,13 +1586,6 @@ def rgrids(*args, **kwargs):
15791586
15801587 # set the locations and labels of the radial gridlines
15811588 lines, labels = rgrids( (0.25, 0.5, 1.0), ('Tom', 'Dick', 'Harry' ))
1582-
1583- See Also
1584- --------
1585- .pyplot.thetagrids
1586- .projections.polar.PolarAxes.set_rgrids
1587- .Axis.get_gridlines
1588- .Axis.get_ticklabels
15891589 """
15901590 ax = gca ()
15911591 if not isinstance (ax , PolarAxes ):
@@ -1634,6 +1634,13 @@ def thetagrids(*args, **kwargs):
16341634 **kwargs
16351635 *kwargs* are optional `~.Text` properties for the labels.
16361636
1637+ See Also
1638+ --------
1639+ .pyplot.rgrids
1640+ .projections.polar.PolarAxes.set_thetagrids
1641+ .Axis.get_gridlines
1642+ .Axis.get_ticklabels
1643+
16371644 Examples
16381645 --------
16391646 ::
@@ -1643,13 +1650,6 @@ def thetagrids(*args, **kwargs):
16431650
16441651 # set the locations and labels of the angular gridlines
16451652 lines, labels = thetagrids(range(45, 360, 90), ('NE', 'NW', 'SW', 'SE'))
1646-
1647- See Also
1648- --------
1649- .pyplot.rgrids
1650- .projections.polar.PolarAxes.set_thetagrids
1651- .Axis.get_gridlines
1652- .Axis.get_ticklabels
16531653 """
16541654 ax = gca ()
16551655 if not isinstance (ax , PolarAxes ):
0 commit comments