@@ -1287,28 +1287,6 @@ def twiny(ax=None):
12871287 return ax1
12881288
12891289
1290- def subplots_adjust (left = None , bottom = None , right = None , top = None ,
1291- wspace = None , hspace = None ):
1292- """
1293- Tune the subplot layout.
1294-
1295- The parameter meanings (and suggested defaults) are::
1296-
1297- left = 0.125 # the left side of the subplots of the figure
1298- right = 0.9 # the right side of the subplots of the figure
1299- bottom = 0.1 # the bottom of the subplots of the figure
1300- top = 0.9 # the top of the subplots of the figure
1301- wspace = 0.2 # the amount of width reserved for space between subplots,
1302- # expressed as a fraction of the average axis width
1303- hspace = 0.2 # the amount of height reserved for space between subplots,
1304- # expressed as a fraction of the average axis height
1305-
1306- The actual defaults are controlled by the rc file
1307- """
1308- fig = gcf ()
1309- fig .subplots_adjust (left , bottom , right , top , wspace , hspace )
1310-
1311-
13121290def subplot_tool (targetfig = None ):
13131291 """
13141292 Launch a subplot tool window for a figure.
@@ -2223,6 +2201,16 @@ def ginput(
22232201 mouse_stop = mouse_stop )
22242202
22252203
2204+ # Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2205+ @_copy_docstring_and_deprecators (Figure .subplots_adjust )
2206+ def subplots_adjust (
2207+ left = None , bottom = None , right = None , top = None , wspace = None ,
2208+ hspace = None ):
2209+ return gcf ().subplots_adjust (
2210+ left = left , bottom = bottom , right = right , top = top , wspace = wspace ,
2211+ hspace = hspace )
2212+
2213+
22262214# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
22272215@_copy_docstring_and_deprecators (Figure .suptitle )
22282216def suptitle (t , ** kwargs ):
0 commit comments