@@ -255,7 +255,7 @@ def __init__(self, nrows, ncols, figure=None,
255
255
Extent of the subplots as a fraction of figure width or height.
256
256
Left cannot be larger than right, and bottom cannot be larger than
257
257
top. If not given, the values will be inferred from a figure or
258
- rcParams when necessary . See also `GridSpec.get_subplot_params`.
258
+ rcParams at draw time . See also `GridSpec.get_subplot_params`.
259
259
260
260
wspace : float, optional
261
261
The amount of width reserved for space between subplots,
@@ -323,12 +323,16 @@ def update(self, **kwargs):
323
323
"""
324
324
Update the subplot parameters of the grid.
325
325
326
+ Parameters that are not explicitly given are not changed. Setting a
327
+ parameter to *None* resets it to :rc:`figure.subplot.*`.
328
+
326
329
Parameters
327
330
----------
328
- left, right, top, bottom : float, optional
331
+ left, right, top, bottom : float or None, optional
332
+ Extent of the subplots as a fraction of figure width or height.
329
333
wspace, hspace : float, optional
330
-
331
- Values set to None use the rcParams value .
334
+ Spacing between the subplots as a fraction of the average subplot
335
+ width / height .
332
336
"""
333
337
for k , v in kwargs .items ():
334
338
if k in self ._AllowedKeys :
0 commit comments