Choosing SARIMA order
In this exercise you will find the appropriate model order for a new set of time series. This is monthly series of the number of employed persons in Australia (in thousands). The seasonal period of this time series is 12 months.
You will create non-seasonal and seasonal ACF and PACF plots and use the table below to choose the appropriate model orders.
AR(p) | MA(q) | ARMA(p,q) | |
---|---|---|---|
ACF | Tails off | Cuts off after lag q | Tails off |
PACF | Cuts off after lag p | Tails off | Tails off |
The DataFrame aus_employment
and the functions plot_acf()
and plot_pacf()
are available in your environment.
Note that you can take multiple differences of a DataFrame using df.diff(n1).diff(n2)
.
This exercise is part of the course
ARIMA Models in Python
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Take the first and seasonal differences and drop NaNs
aus_employment_diff = ____