Plot the fit of an ARIMA Model

20 visualizaciones (últimos 30 días)
Arthur Enders
Arthur Enders el 21 de Feb. de 2019
Comentada: Seemant Tiwari el 29 de En. de 2024
Hello,
I've created an ARIMA Model with the Econometrics Toolbox. I also easily managed to recreate this model manually with the arima and estimate functions. Now I want to predict the values using the model, plot it against the real values and calculate the RMSE of the predicted values. The econometric modeler does plot the fit of the model (seen in the pdf at Figure 1.1.) but I do not find any function to recreate this plot or the predicted values manually.
Is there an easy way to do this? Or do I have to manually include the equation myself?
Thank you in advance and kind regards
A. Enders

Respuesta aceptada

Matthias Bär
Matthias Bär el 3 de Abr. de 2019
Editada: Matthias Bär el 3 de Abr. de 2019
After digging 2 hours through different Matlab examples i finally found the answer. See below and try it.
load(fullfile(matlabroot,'examples','econ','Data_Airline.mat'))
y = log(Data);
T = length(y);
Mdl = arima('Constant',0,'D',1,'Seasonality',12,...
'MALags',1,'SMALags',12);
EstMdl = estimate(Mdl,y);
residuals = infer(EstMdl,y);
prediction = y+residuals;
figure()
plot(y)
hold on
plot(prediction)
Good luck ;)
  3 comentarios
Jerry Yang
Jerry Yang el 25 de Mzo. de 2022
residual = y - y_hat
so that y_hat = y - residual?
Seemant Tiwari
Seemant Tiwari el 29 de En. de 2024
can you tell me, how are you calculating these value like constant (?), variance (?), sar (?), Sma (?). ??

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Conditional Mean Models en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by