8000 DOC: expanded boxplot_stats docstring · matplotlib/matplotlib@5ded206 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5ded206

Browse files
committed
DOC: expanded boxplot_stats docstring
1 parent d29bcd7 commit 5ded206

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/matplotlib/cbook.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1862,12 +1862,12 @@ def boxplot_stats(X, whis=1.5, bootstrap=None, labels=None):
18621862
18631863
whis : float, string, or sequence (default = 1.5)
18641864
As a float, determines the reach of the whiskers past the first and
1865-
third quartiles (e.g., Q3 + whis*IQR). Beyond the whiskers, data are
1866-
considers outliers and are plotted as individual points. Set this
1867-
to an unreasonably high value to force the whiskers to show the min
1868-
and max data. (IQR = interquartile range, Q3-Q1). Alternatively, set
1869-
this to an ascending sequence of percentile (e.g., [5, 95]) to set
1870-
the whiskers at specific percentiles of the data. Finally, can be the
1865+
third quartiles (e.g., Q3 + whis*IQR, QR = interquartile range, Q3-Q1).
1866+
Beyond the whiskers, data are considered outliers and are plotted as
1867+
individual points. Set this to an unreasonably high value to force the
1868+
whiskers to show the min and max data. Alternatively, set this to an
1869+
ascending sequence of percentile (e.g., [5, 95]) to set the whiskers
1870+
at specific percentiles of the data. Finally, can `whis` be the
18711871
string 'range' to force the whiskers to the min and max of the data.
18721872
In the edge case that the 25th and 75th percentiles are equivalent,
18731873
`whis` will be automatically set to 'range'

0 commit comments

Comments
 (0)
0