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.
Latihan ini adalah bagian dari kursus
Visualizing Time Series Data in Python
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
# Import statsmodels.api as sm
____
# Perform time series decompositon
decomposition = sm.tsa.____(____)
# Extract the trend and seasonal components
trend = ____
seasonal = ____