Are there any rules when it comes to determining the Order and the Seasonal Order in a SARIMA?
I have noticed that when I use StatsModels in Python I can't choose a seasonal lag that is below or equal to the number of AR lags.
Example:
I am running a SARIMA with order (3,1,3) and seasonal order (3,1,3,3).
This generates an error: ValueError: Invalid model: autoregressive lag(s) {3} are in both the seasonal and non-seasonal autoregressive components.