Time series decomposition of the airline dataset
In this exercise, you will apply time series decomposition to the airline
dataset, and visualize the trend
and seasonal
components.
Este exercício faz parte do curso
Visualizing Time Series Data in Python
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Import statsmodels.api as sm
____
# Perform time series decompositon
decomposition = sm.tsa.____(____)
# Extract the trend and seasonal components
trend = ____
seasonal = ____