Stacked Area
A Stacked Area Chart is an extension of the basic Area Chart, where multiple datasets are layered on top of one another, showcasing the cumulative contribution of each dataset to the total. Each distinct color or shade represents a different data category, allowing for easy visual differentiation. It's particularly useful for displaying the composition and relative proportion of multiple data series over time.
The Method To Use
The method is s.plt.stacked_area()
It must contain the following parameters:
and accepts these parameters as optional:
Examples
The following code:
Variants
By setting the parameter variant
to the following values the appearance of the chart can be changed:
Last updated