8000 Merge pull request #13898 from meeseeksmachine/auto-backport-of-pr-13… · matplotlib/matplotlib@4a4484b · GitHub
[go: up one dir, main page]

Skip to content 8000

Commit 4a4484b

Browse files
authored
Merge pull request #13898 from meeseeksmachine/auto-backport-of-pr-13896-on-v3.1.x
Backport PR #13896 on branch v3.1.x (Fix cbook.boxplot_stats docstring)
2 parents 4c500dc + 032a201 commit 4a4484b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/cbook/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1148,14 +1148,14 @@ def boxplot_stats(X, whis=1.5, bootstrap=None, labels=None,
11481148
fewer dimensions.
11491149
11501150
whis : float, string, or sequence (default = 1.5)
1151-
As a float, determines the reach of the whiskers to the beyond the
1151+
As a float, determines the reach of the whiskers beyond the
11521152
first and third quartiles. In other words, where IQR is the
11531153
interquartile range (`Q3-Q1`), the upper whisker will extend to last
1154-
datum less than `Q3 + whis*IQR`). Similarly, the lower whisker will
1154+
datum less than `Q3 + whis*IQR`. Similarly, the lower whisker will
11551155
extend to the first datum greater than `Q1 - whis*IQR`.
11561156
Beyond the whiskers, data are considered outliers
1157-
and are plotted as individual points. This can be set this to an
1158-
ascending sequence of percentile (e.g., [5, 95]) to set the
1157+
and are plotted as individual points. This can be set to an
1158+
ascending sequence of percentiles (e.g., [5, 95]) to set the
11591159
whiskers at specific percentiles of the data. Finally, `whis`
11601160
can be the string ``'range'`` to force the whiskers to the
11611161
minimum and maximum of the data. In the edge case that the 25th

0 commit comments

Comments
 (0)
0