@@ -1613,7 +1613,7 @@ def plot(self, *args, scalex=True, scaley=True, data=None, **kwargs):
16131613
16141614 Parameters
16151615 ----------
1616- x, y : array-like or scalar
1616+ x, y : array-like or float
16171617 The horizontal / vertical coordinates of the data points.
16181618 *x* values are optional and default to ``range(len(y))``.
16191619
@@ -4231,13 +4231,13 @@ def bxp(self, bxpstats, positions=None, widths=None, vert=None,
42314231 A list of dictionaries containing stats for each boxplot.
42324232 Required keys are:
42334233
4234- - ``med``: Median (scalar ).
4235- - ``q1``, ``q3``: First & third quartiles (scalars ).
4236- - ``whislo``, ``whishi``: Lower & upper whisker positions (scalars ).
4234+ - ``med``: Median (float ).
4235+ - ``q1``, ``q3``: First & third quartiles (float ).
4236+ - ``whislo``, ``whishi``: Lower & upper whisker positions (float ).
42374237
42384238 Optional keys are:
42394239
4240- - ``mean``: Mean (scalar ). Needed if ``showmeans=True``.
4240+ - ``mean``: Mean (float ). Needed if ``showmeans=True``.
42414241 - ``fliers``: Data beyond the whiskers (array-like).
42424242 Needed if ``showfliers=True``.
42434243 - ``cilo``, ``cihi``: Lower & upper confidence intervals
@@ -6872,7 +6872,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
68726872 ``True``, then the histogram is normalized such that the first bin
68736873 equals 1.
68746874
6875- bottom : array-like, scalar, or None , default: None
6875+ bottom : array-like or float , default: 0
68766876 Location of the bottom of each bin, i.e. bins are drawn from
68776877 ``bottom`` to ``bottom + hist(x, bins)`` If a scalar, the bottom
68786878 of each bin is shifted by the same amount. If an array, each bin
0 commit comments