@@ -1569,24 +1569,20 @@ def set_aspect(self, aspect, adjustable=None, anchor=None, share=False):
15691569
15701570 Parameters
15711571 ----------
1572- aspect : {'auto'} or num
1572+ aspect : {'auto', 'equal' } or float
15731573 Possible values:
15741574
1575- ======== =================================================
1576- value description
1577- ======== =================================================
1578- 'auto' automatic; fill the position rectangle with data.
1579- num a circle will be stretched such that the height
1580- is *num* times the width. 'equal' is a synonym
1581- for ``aspect=1``, i.e. same scaling for x and y.
1582- ======== =================================================
1575+ - 'auto': fill the position rectangle with data.
1576+ - 'equal': same as ``aspect=1``, i.e. same scaling for x and y.
1577+ - *float*: A circle will be stretched such that the height
1578+ is *float* times the width.
15831579
15841580 adjustable : None or {'box', 'datalim'}, optional
15851581 If not ``None``, this defines which parameter will be adjusted to
15861582 meet the required aspect. See `.set_adjustable` for further
15871583 details.
15881584
1589- anchor : None or str or 2-tuple of float, optional
1585+ anchor : None or str or (float, float) , optional
15901586 If not ``None``, this defines where the Axes will be drawn if there
15911587 is extra space due to aspect constraints. The most common way to
15921588 to specify the anchor are abbreviations of cardinal directions:
0 commit comments