Session Ready
Exercise

Visualize multiple time series

If there are multiple time series in a single DataFrame, you can still use the .plot() method to plot a line chart of all the time series. Another interesting way to plot these is to use area charts. Area charts are commonly used when dealing with multiple time series, and can be used to display cumulated totals.

With the pandas library, you can simply leverage the .plot.area() method to produce area charts of the time series data in your DataFrame.

Instructions 1/2
undefined XP
  • 1
  • 2
  • Plot all the time series data in the meat DataFrame.
  • Make sure to specify a line width of 2 and a font size of 12.