diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index 5ee0db23b0e8..e7e223841cff 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -3159,24 +3159,28 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None, ``shownotches`` is also True. Otherwise, means will be shown as points. - Additional Options - --------------------- - The following boolean options toggle the drawing of individual - components of the boxplots: - - showcaps: the caps on the ends of whiskers - (default is True) - - showbox: the central box (default is True) - - showfliers: the outliers beyond the caps (default is True) - - showmeans: the arithmetic means (default is False) - - The remaining options can accept dictionaries that specify the - style of the individual artists: - - capprops - - boxprops - - whiskerprops - - flierprops - - medianprops - - meanprops + Other Parameters + ---------------- + showcaps : bool, optional (True) + Show the caps on the ends of whiskers. + showbox : bool, optional (True) + Show the central box. + showfliers : bool, optional (True) + Show the outliers beyond the caps. + showmeans : bool, optional (False) + Show the arithmetic means. + capprops : dict, optional (None) + Specifies the style of the caps. + boxprops : dict, optional (None) + Specifies the style of the box. + whiskerprops : dict, optional (None) + Specifies the style of the whiskers. + flierprops : dict, optional (None) + Specifies the style of the fliers. + medianprops : dict, optional (None) + Specifies the style of the median. + meanprops : dict, optional (None) + Specifies the style of the mean. Returns -------