Skip to content

Commit d5d9a0f

Browse files
committed
DOC: add relevant branches to MEP28
1 parent 93fd84a commit d5d9a0f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

doc/devel/MEP/MEP28.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ Branches and Pull requests
1515

1616
The following lists any open PRs or branches related to this MEP:
1717

18-
#. Adding pre- & post-processing options to ``cbook.boxplot_stats``: https://github.com/phobson/matplotlib/tree/boxplot-stat-transforms
19-
#. Deprecated passings 2D numpy arrays as input: None
18+
#. Deprecate redundant statistical kwargs in ``Axes.boxplot``: https://github.com/phobson/matplotlib/tree/MEP28-initial-deprecations
19+
#. Deprecate redundant style options in ``Axes.boxplot``: https://github.com/phobson/matplotlib/tree/MEP28-initial-deprecations
20+
#. Deprecate passings 2D numpy arrays as input: None
21+
#. Add pre- & post-processing options to ``cbook.boxplot_stats``: https://github.com/phobson/matplotlib/tree/boxplot-stat-transforms
2022
#. Exposing ``cbook.boxplot_stats`` through ``Axes.boxplot`` kwargs: None
2123
#. Remove redundant statistical kwargs in ``Axes.boxplot``: None
2224
#. Remove redundant style options in ``Axes.boxplot``: None
23-
#. 6Remaining items that arise through discussion: None
25+
#. Remaining items that arise through discussion: None
2426

2527
Abstract
2628
========

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3280,6 +3280,7 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
32803280
whis = rcParams['boxplot.whiskers']
32813281
if bootstrap is None:
32823282
bootstrap = rcParams['boxplot.bootstrap']
3283+
32833284
bxpstats = cbook.boxplot_stats(x, whis=whis, bootstrap=bootstrap,
32843285
labels=labels, autorange=autorange)
32853286
if notch is None:

0 commit comments

Comments
 (0)