@@ -1287,28 +1287,6 @@ def twiny(ax=None):
1287
1287
return ax1
1288
1288
1289
1289
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
-
1312
1290
def subplot_tool (targetfig = None ):
1313
1291
"""
1314
1292
Launch a subplot tool window for a figure.
@@ -2223,6 +2201,16 @@ def ginput(
2223
2201
mouse_stop = mouse_stop )
2224
2202
2225
2203
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
+
2226
2214
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2227
2215
@_copy_docstring_and_deprecators (Figure .suptitle )
2228
2216
def suptitle (t , ** kwargs ):
0 commit comments