Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f781a1 commit 77be376Copy full SHA for 77be376
lib/matplotlib/axes/_axes.py
@@ -1098,7 +1098,10 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
1098
1099
return coll
1100
1101
- @unpack_labeled_data(replace_all_args=False, label_namer=None)
+ @unpack_labeled_data(replace_names=["positions", "lineoffsets",
1102
+ "linelengths", "linewidths",
1103
+ "colors", "linestyles"],
1104
+ label_namer=None)
1105
@docstring.dedent_interpd
1106
def eventplot(self, positions, orientation='horizontal', lineoffsets=1,
1107
linelengths=1, linewidths=None, colors=None,
@@ -2433,7 +2436,7 @@ def stem(self, *args, **kwargs):
2433
2436
2434
2437
return stem_container
2435
2438
- @unpack_labeled_data(replace_names=['x', 'labels', 'colors'],
2439
+ @unpack_labeled_data(replace_names=['x', 'explode', 'labels', 'colors'],
2440
label_namer=None)
2441
def pie(self, x, explode=None, labels=None, colors=None,
2442
autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1,
0 commit comments