We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent8b3bfa6 commitc93a33dCopy full SHA for c93a33d
lib/matplotlib/stackplot.py
@@ -61,9 +61,9 @@ def stackplot(axes, x, *args,
61
where: bool or array of bool, optional
62
Passed to `.Axes.fill_between` and defines where to exclude horizontal
63
regions from being filled. The filled regions are defined by the
64
- coordinates `x[where]`. Can be either a single bool, an array of shape
65
- (N,) or an array of shape (M, N).
66
-Should be used together withkwarg `interpolate=True`.
+ coordinates ``x[where]``. Can be either a single bool, an array of
+shape(N,) or an array of shape (M, N). Should be used together with
+ kwarg ``interpolate=True``.
67
68
**kwargs
69
All other keyword arguments are passed to `.Axes.fill_between`.
@@ -73,6 +73,7 @@ def stackplot(axes, x, *args,
73
list of `.PolyCollection`
74
A list of `.PolyCollection` instances, one for each element in the
75
stacked area plot.
76
+
77
"""
78
79
y=np.row_stack(args)