Area
The Area Chart
An area chart displays quantitative data graphically, with the area between the data line and the x-axis filled with color or pattern. This filled area represents volume or quantity, making it a useful tool for visualizing the magnitude or cumulative value of data over a continuous scale, such as time.
The Method To Use
The method is s.plt.area()
It must contain the following parameters:
Accepts these parameters as optional:
Examples
Suppose you have data points representing accumulated values over days. Here's how you can plot an area chart:
Variants
By setting the parameter variant
to the following values the appearance of the chart can be changed:
Last updated