Skip to content

Commit 761ee40

Browse files
committed
DOC: fix order of params boxplot docstring
1 parent 0d8db73 commit 761ee40

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3114,6 +3114,12 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
31143114
(provided ``notch`` is `True`). When an element of
31153115
``conf_intervals`` is `None`, the notches are computed by the
31163116
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.
31173123
positions : array-like, optional
31183124
Sets the positions of the boxes. The ticks and limits are
31193125
automatically set to match the positions. Defaults to
@@ -3135,12 +3141,6 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
31353141
75th percentiles are equal, ``whis`` is set to ``'range'`` such
31363142
that the whisker ends are at the minimum and maximum of the
31373143
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.
31443144
31453145
Additional Options
31463146
---------------------

0 commit comments

Comments
 (0)