Iโm building ARIMA / SARIMA models and want to systematically choose the range of p and q values based on ACF and PACF plots.
Given example ACF and PACF plots:
- How should I interpret the threshold values (or upper bounds) for p and q?
- More specifically, how can I avoid large ranges for pdq combinations and restrict p, q to some meaningful values suggested by the plots?
Considering the plots given in the images, can anyone please help me for appropriate way to minimize the range for pdq combinations
EOD I'll be using
p_vals = range(0, p_upper_bound)
d_vals = range(0, 1)
q_vals = range(0, q_upper_bound)
pdq_combinations = list(product(p_vals, d_vals, q_vals))
and then fit, predict, evaluate the ARIMA, SARIMA models for each order and select the pdq values which will give least rmse