diff --git a/pandas/plotting/_core.py b/pandas/plotting/_core.py index 748b83aec88f4..287b0b4475d77 100644 --- a/pandas/plotting/_core.py +++ b/pandas/plotting/_core.py @@ -216,9 +216,9 @@ def hist_frame( groups of numerical data through their quartiles. The box extends from the Q1 to Q3 quartile values of the data, with a line at the median (Q2). The whiskers extend from the edges -of box to show the range of the data. The position of the whiskers -is set by default to `1.5 * IQR (IQR = Q3 - Q1)` from the edges of the box. -Outlier points are those past the end of the whiskers. +of box to show the range of the data. By default, they extend no more than +`1.5 * IQR (IQR = Q3 - Q1)` from the edges of the box, ending at the farthest +data point within that interval. Outliers are plotted as separate dots. For further details see Wikipedia's entry for `boxplot `_.