Axes.
stackplot
(x, *args, labels=(), colors=None, baseline='zero', data=None, **kwargs)¶Draw a stacked area plot.
Parameters: | x : 1d array of dimension N y : 2d array (dimension MxN), or sequence of 1d arrays (each dimension 1xN)
baseline : {'zero', 'sym', 'wiggle', 'weighted_wiggle'}
labels : Length N sequence of strings
colors : Length N sequence of colors
**kwargs
|
---|---|
Returns: | list : list of
|
Notes
Note
In addition to the above described arguments, this function can take a data keyword argument. If such a data argument is given, the following arguments are replaced by data[<arg>]:
Objects passed as data must support item access (data[<arg>]
) and
membership test (<arg> in data
).