What is SARIMA and how is it different from ARIMA?
Question
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways
Answer ( 1 )
The ARIMA model is ARIMA(p,d,q)
where p = no of previous lags which are significant in determining present value.
d = The order of differencing you need to do to make the time series stationary.
q = The no of error terms in the previous lags which are significant in determining the present value.
SARIMA differs from ARIMA in seasonal component.
If your time series has a seasonal component then the values of p,d,q can be different
for the period of the seasonality.
ARIMA(p,d,q)*ARIMA(P,D,Q)S
where p = non-seasonal AR order, d = non-seasonal differencing, q = non-seasonal MA order,
P = seasonal AR order, D = seasonal differencing, Q = seasonal MA order,
and S = time span of repeating seasonal pattern.