Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f32fd8

Browse files
authored
Merge pull request #13896 from letmaik/patch-1
Fix cbook.boxplot_stats docstring
2 parents f58c933 + 07f80ca commit 2f32fd8

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)