@@ -3068,8 +3068,8 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3068
3068
meanprops=None, capprops=None, whiskerprops=None,
3069
3069
manage_xticks=True, autorange=False):
3070
3070
3071
- Make a box and whisker plot for each column of *x* or each
3072
- vector in sequence *x* . The box extends from the lower to
3071
+ Make a box and whisker plot for each column of ``x`` or each
3072
+ vector in sequence ``x`` . The box extends from the lower to
3073
3073
upper quartile values of the data, with a line at the median.
3074
3074
The whiskers extend from the box to show the range of the
3075
3075
data. Flier points are those past the end of the whiskers.
@@ -3099,12 +3099,10 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3099
3099
this to an ascending sequence of percentile (e.g., [5, 95])
3100
3100
to set the whiskers at specific percentiles of the data.
3101
3101
Finally, ``whis`` can be the string ``'range'`` to force the
3102
- whiskers to the min and max of the data. In the edge case
3103
- that the 25th and 75th percentiles are equivalent, *whis*
3104
- will be automatically set to ``'range'``.
3102
+ whiskers to the min and max of the data.
3105
3103
bootstrap : int, optional
3106
3104
Specifies whether to bootstrap the confidence intervals
3107
- around the median for notched boxplots. If bootstrap== None,
3105
+ around the median for notched boxplots. If ` bootstrap` is None,
3108
3106
no bootstrapping is performed, and notches are calculated
3109
3107
using a Gaussian-based asymptotic approximation (see McGill,
3110
3108
R., Tukey, J.W., and Larsen, W.A., 1978, and Kendall and
@@ -3115,13 +3113,13 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3115
3113
usermedians : array-like, optional
3116
3114
An array or sequence whose first dimension (or length) is
3117
3115
compatible with ``x``. This overrides the medians computed
3118
- by matplotlib for each element of * usermedians* that is not
3119
- `None`. When an element of * usermedians* == None, the median
3116
+ by matplotlib for each element of `` usermedians`` that is not
3117
+ `None`. When an element of `` usermedians`` is None, the median
3120
3118
will be computed by matplotlib as normal.
3121
3119
conf_intervals : array-like, optional
3122
3120
Array or sequence whose first dimension (or length) is
3123
3121
compatible with ``x`` and whose second dimension is 2. When
3124
- the current element of ``conf_intervals`` is not None, the
3122
+ the an element of ``conf_intervals`` is not None, the
3125
3123
notch locations computed by matplotlib are overridden
3126
3124
(provided ``notch`` is `True`). When an element of
3127
3125
``conf_intervals`` is `None`, the notches are computed by the
@@ -3185,7 +3183,7 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3185
3183
and the median's confidence intervals if enabled.
3186
3184
- medians: horizonal lines at the median of each box.
3187
3185
- whiskers: the vertical lines extending to the most extreme,
3188
- n -outlier data points.
3186
+ non -outlier data points.
3189
3187
- caps: the horizontal lines at the ends of the whiskers.
3190
3188
- fliers: points representing data that extend beyond the
3191
3189
whiskers (outliers).
0 commit comments