ARIMA models : plot_diagnostics, what's meaning of residuals of our model
--
Music by Eric Matyas
https://www.soundimage.org
Track title: Popsicle Puzzles
--
Chapters
00:00 Question
01:26 Accepted answer (Score 4)
02:30 Thank you
--
Full question
https://stackoverflow.com/questions/4424...
Question links:
https://www.digitalocean.com/community/t...-
Accepted answer links:
[documentation]: http://www.statsmodels.org/stable/genera...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#python #timeseries #statsmodels
#avk47
ACCEPTED ANSWER
Score 4
Residual indeed is the difference between true and predicted value. If there are correlations between residuals - there is information left in the residuals which should be used in computing forecasts. If the residuals have a mean other than zero, then the forecasts are biased. For instance if we have a constantly growing residual like (... -0.3, -0.2, 0.1, 0, 0.1, 0.2, 0.3, ... and so on, the mean will be 0) it means that our model does not fully depict the process.
Parameters: If you look at the package documentation you will see that these parameters are used to ENFORCE stationarity or invertibility. If the data is stationary and the AR parameters are chosen correctly (since you should have done some previous data preprocessing) why should we do it again? Same stands for invertibility.