ARIMA models : plot_diagnostics, what's meaning of residuals of our model
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: The World Wide Mind
--
Chapters
00:00 Arima Models : Plot_diagnostics, What'S Meaning Of Residuals Of Our Model
01:03 Accepted Answer Score 4
01:56 Thank you
--
Full question
https://stackoverflow.com/questions/4424...
--
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.