@@ -2162,16 +2162,15 @@ class SubFigure(FigureBase):
2162
2162
"""
2163
2163
Logical figure that can be placed inside a figure.
2164
2164
2165
- Typically instantiated using `.Figure.add_subfigure` or
2166
- `.SubFigure.add_subfigure`, or `.SubFigure.subfigures`. A subfigure has
2167
- the same methods as a figure except for those particularly tied to the size
2168
- or dpi of the figure, and is confined to a prescribed region of the figure.
2169
- For example the following puts two subfigures side-by-side::
2165
+ See `matplotlib.figure` for an index of methods on this class. Typically
2166
+ instantiated using `.Figure.add_subfigure` or `.SubFigure.add_subfigure`,
2167
+ or `.SubFigure.subfigures`. A subfigure has the same methods as a figure
2168
+ except for those particularly tied to the size or dpi of the figure, and is
2169
+ confined to a prescribed region of the figure. For example the following
2170
+ puts two subfigures side-by-side::
2170
2171
2171
- fig = plt.figure()
2172
- sfigs = fig.subfigures(1, 2)
2173
- axsL = sfigs[0].subplots(1, 2)
2174
- axsR = sfigs[1].subplots(2, 1)
2172
+ fig = plt.figure() sfigs = fig.subfigures(1, 2) axsL =
2173
+ sfigs[0].subplots(1, 2) axsR = sfigs[1].subplots(2, 1)
2175
2174
2176
2175
See :doc:`/gallery/subplots_axes_and_figures/subfigures`
2177
2176
@@ -2373,6 +2372,8 @@ class Figure(FigureBase):
2373
2372
"""
2374
2373
The top level container for all the plot elements.
2375
2374
2375
+ See `matplotlib.figure` for an index of class methods.
2376
+
2376
2377
Attributes
2377
2378
----------
2378
2379
patch
0 commit comments