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

Skip to content

Commit 568e294

Browse files
committed
DOC: fix minor typos and formatting (MEP28)
1 parent b156bf0 commit 568e294

1 file changed

Lines changed: 11 additions & 19 deletions

File tree

doc/devel/MEP/MEP28.rst

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,26 @@
11
=============================================
2-
MEP 28: Remove Complexity from Axes.boxplot
2+
MEP28: Remove Complexity from Axes.boxplot
33
=============================================
44

55
.. contents::
66
:local:
77

8+
89
Status
910
======
10-
11-
..
12-
.. MEPs go through a number of phases in their lifetime:
13-
1411
**Discussion**
15-
..
16-
.. - **Progress**: Consensus was reached on the mailing list and
17-
.. implementation work has begun.
18-
..
19-
.. - **Completed**: The implementation has been merged into master.
20-
..
21-
.. - **Superseded**: This MEP has been abandoned in favor of another
22-
.. approach.
2312

2413
Branches and Pull requests
2514
==========================
2615

27-
Adding pre- & post-processing options to ``cbook.boxplot_stats``: https://github.com/phobson/matplotlib/tree/boxplot-stat-transforms
28-
Exposing ``cbook.boxplot_stats`` through ``Axes.boxplot`` kwargs: None
29-
Remove redundant statistical kwargs in ``Axes.boxplot``: None
30-
Remove redundant style options in ``Axes.boxplot``: None
31-
Remaining items that arise through discussion: None
16+
The following lists any open PRs or branches related to this MEP:
17+
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
20+
#. Exposing ``cbook.boxplot_stats`` through ``Axes.boxplot`` kwargs: None
21+
#. Remove redundant statistical kwargs in ``Axes.boxplot``: None
22+
#. Remove redundant style options in ``Axes.boxplot``: None
23+
#. 6Remaining items that arise through discussion: None
3224

3325
Abstract
3426
========
@@ -121,7 +113,7 @@ data differently depending one these types of transforms.
121113
ax.set_yscale('log')
122114
data = np.random.lognormal(-1.75, 2.75, size=37)
123115

124-
stats = cbook.boxplot_stats(data, labels=['arimetic'])
116+
stats = cbook.boxplot_stats(data, labels=['arithmetic'])
125117
logstats = cbook.boxplot_stats(np.log(data), labels=['log-transformed'])
126118

127119
for lsdict in logstats:

0 commit comments

Comments
 (0)