10000 Merge pull request #5539 from anntzer/violin-return-value-docstring · matplotlib/matplotlib@698271c · GitHub
[go: up one dir, main page]

Skip to content

Commit 698271c

Browse files
committed
Merge pull request #5539 from anntzer/violin-return-value-docstring
DOC: Fix docstring of violin{,plot} for return value. closes #5497
1 parent 5c9041f commit 698271c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7267,27 +7267,27 @@ def violinplot(self, dataset, positions=None, vert=True, widths=0.5,
72677267
:class:`matplotlib.collections.PolyCollection` instances
72687268
containing the filled area of each violin.
72697269
7270-
- ``means``: A
7270+
- ``cmeans``: A
72717271
:class:`matplotlib.collections.LineCollection` instance
72727272
created to identify the mean values of each of the
72737273
violin's distribution.
72747274
7275-
- ``mins``: A
7275+
- ``cmins``: A
72767276
:class:`matplotlib.collections.LineCollection` instance
72777277
created to identify the bottom of each violin's
72787278
distribution.
72797279
7280-
- ``maxes``: A
7280+
- ``cmaxes``: A
72817281
:class:`matplotlib.collections.LineCollection` instance
72827282
created to identify the top of each violin's
72837283
distribution.
72847284
7285-
- ``bars``: A
7285+
- ``cbars``: A
72867286
:class:`matplotlib.collections.LineCollection` instance
72877287
created to identify the centers of each violin's
72887288
distribution.
72897289
7290-
- ``medians``: A
7290+
- ``cmedians``: A
72917291
:class:`matplotlib.collections.LineCollection` instance
72927292
created to identify the median values of each of the
72937293
violin's distribution.
@@ -7373,27 +7373,27 @@ def violin(self, vpstats, positions=None, vert=True, widths=0.5,
73737373
:class:`matplotlib.collections.PolyCollection` instances
73747374
containing the filled area of each violin.
73757375
7376-
- ``means``: A
7376+
- ``cmeans``: A
73777377
:class:`matplotlib.collections.LineCollection` instance
73787378
created to identify the mean values of each of the
73797379
violin's distribution.
73807380
7381-
- ``mins``: A
7381+
- ``cmins``: A
73827382
:class:`matplotlib.collections.LineCollection` instance
73837383
created to identify the bottom of each violin's
73847384
distribution.
73857385
7386-
- ``maxes``: A
7386+
- ``cmaxes``: A
73877387
:class:`matplotlib.collections.LineCollection` instance
73887388
created to identify the top of each violin's
73897389
distribution.
73907390
7391-
- ``bars``: A
7391+
- ``cbars``: A
73927392
:class:`matplotlib.collections.LineCollection` instance
73937393
created to identify the centers of each violin's
73947394
distribution.
73957395
7396-
- ``medians``: A
7396+
- ``cmedians``: A
73977397
:class:`matplotlib.collections.LineCollection` instance
73987398
created to identify the median values of each of the
73997399
violin's distribution.

0 commit comments

Comments
 (0)
0