@@ -1618,7 +1618,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
16181618
16191619 Parameters
16201620 ----------
1621- x, y : array-like or scalar
1621+ x, y : array-like or float
16221622 The horizontal / vertical coordinates of the data points.
16231623 *x* values are optional and default to ``range(len(y))``.
16241624
@@ -4250,13 +4250,13 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=None,
42504250 A list of dictionaries containing stats for each boxplot.
42514251 Required keys are:
42524252
4253- - ``med``: Median (scalar ).
4254- - ``q1``, ``q3``: First & third quartiles (scalars ).
4255- - ``whislo``, ``whishi``: Lower & upper whisker positions (scalars ).
4253+ - ``med``: Median (float ).
4254+ - ``q1``, ``q3``: First & third quartiles (float ).
4255+ - ``whislo``, ``whishi``: Lower & upper whisker positions (float ).
42564256
42574257 Optional keys are:
42584258
4259- - ``mean``: Mean (scalar ). Needed if ``showmeans=True``.
4259+ - ``mean``: Mean (float ). Needed if ``showmeans=True``.
42604260 - ``fliers``: Data beyond the whiskers (array-like).
42614261 Needed if ``showfliers=True``.
42624262 - ``cilo``, ``cihi``: Lower & upper confidence intervals
@@ -6891,7 +6891,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
68916891 ``True``, then the histogram is normalized such that the first bin
68926892 equals 1.
68936893
6894- bottom : array-like, scalar, or None , default: None
6894+ bottom : array-like or float , default: 0
68956895 Location of the bottom of each bin, i.e. bins are drawn from
68966896 ``bottom`` to ``bottom + hist(x, bins)`` If a scalar, the bottom
68976897 of each bin is shifted by the same amount. If an array, each bin
0 commit comments