@@ -37,11 +37,11 @@ def __init__(self, fig, pos, horizontal, vertical,
3737 Sizes for horizontal division.
3838 vertical : list of :mod:`~mpl_toolkits.axes_grid1.axes_size`
3939 Sizes for vertical division.
40- aspect : bool
40+ aspect : bool, optional
4141 Whether overall rectangular area is reduced so that the relative
4242 part of the horizontal and vertical scales have the same scale.
4343 anchor : (float, float) or {'C', 'SW', 'S', 'SE', 'E', 'NE', 'N',\
44- 'NW', 'W'}
44+ 'NW', 'W'}, default: 'C'
4545 Placement of the reduced rectangle, when *aspect* is True.
4646 """
4747
@@ -294,7 +294,7 @@ def add_auto_adjustable_area(self, use_axes, pad=0.1, adjust_dirs=None):
294294 ----------
295295 use_axes : `~matplotlib.axes.Axes` or list of `~matplotlib.axes.Axes`
296296 The Axes whose decorations are taken into account.
297- pad : float,optional
297+ pad : float,default: 0.1
298298 Additional padding in inches.
299299 adjust_dirs : list of {"left", "right", "bottom", "top"}, optional
300300 The sides where padding is added; defaults to all four sides.
@@ -377,6 +377,16 @@ def __init__(self, fig, *args, horizontal=None, vertical=None,
377377 If *nrows*, *ncols*, and *index* are all single digit numbers, then
378378 *args* can be passed as a single 3-digit number (e.g. 234 for
379379 (2, 3, 4)).
380+ horizontal : list of :mod:`~mpl_toolkits.axes_grid1.axes_size`, optional
381+ Sizes for horizontal division.
382+ vertical : list of :mod:`~mpl_toolkits.axes_grid1.axes_size`, optional
383+ Sizes for vertical division.
384+ aspect : bool, optional
385+ Whether overall rectangular area is reduced so that the relative
386+ part of the horizontal and vertical scales have the same scale.
387+ anchor : (float, float) or {'C', 'SW', 'S', 'SE', 'E', 'NE', 'N',\
388+ 'NW', 'W'}, default: 'C'
389+ Placement of the reduced rectangle, when *aspect* is True.
380390 """
381391self .figure = fig
382392super ().__init__ (fig , [0 ,0 ,1 ,1 ],