8000 Fix docstring of violin{,plot} for return value. by anntzer · Pull Request #5539 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix docstring of violin{,plot} for return value. #5539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 21, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7274,27 +7274,27 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
:class:`matplotlib.collections.PolyCollection` instances
containing the filled area of each violin.

- ``means``: A
- ``cmeans``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the mean values of each of the
8000 violin's distribution.

- ``mins``: A
- ``cmins``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the bottom of each violin's
distribution.

- ``maxes``: A
- ``cmaxes``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the top of each violin's
distribution.

- ``bars``: A
- ``cbars``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the centers of each violin's
distribution.

- ``medians``: A
- ``cmedians``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the median values of each of the
violin's distribution.
Expand Down Expand Up @@ -7380,27 +7380,27 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
:class:`matplotlib.collections.PolyCollection` instances
containing the filled area of each violin.

- ``means``: A
- ``cmeans``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the mean values of each of the
violin's distribution.

- ``mins``: A
- ``cmins``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the bottom of each violin's
distribution.

- ``maxes``: A
- ``cmaxes``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the top of each violin's
distribution.

- ``bars``: A
- ``cbars``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the centers of each violin's
distribution.

- ``medians``: A
- ``cmedians``: A
:class:`matplotlib.collections.LineCollection` instance
created to identify the median values of each of the
violin's distribution.
Expand Down
0