@@ -3114,6 +3114,12 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3114
3114
(provided ``notch`` is `True`). When an element of
3115
3115
``conf_intervals`` is `None`, the notches are computed by the
3116
3116
method specified by the other kwargs (e.g., ``bootstrap``).
3117
+ meanline : bool, optional (False)
3118
+ If `True` (and ``showmeans`` is True), will try to render
3119
+ the mean as a line spanning the full width of the box
3120
+ according to ``meanprops`` (see below). Not recommended if
3121
+ ``shownotches`` is also True. Otherwise, means will be shown
3122
+ as points.
3117
3123
positions : array-like, optional
3118
3124
Sets the positions of the boxes. The ticks and limits are
3119
3125
automatically set to match the positions. Defaults to
@@ -3135,12 +3141,6 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
3135
3141
75th percentiles are equal, ``whis`` is set to ``'range'`` such
3136
3142
that the whisker ends are at the minimum and maximum of the
3137
3143
data.
3138
- meanline : bool, optional (False)
3139
- If `True` (and ``showmeans`` is True), will try to render
3140
- the mean as a line spanning the full width of the box
3141
- according to ``meanprops`` (see below). Not recommended if
3142
- ``shownotches`` is also True. Otherwise, means will be shown
3143
- as points.
3144
3144
3145
3145
Additional Options
3146
3146
---------------------
0 commit comments