ARIMA Model Forecasting issue

4 visualizaciones (últimos 30 días)
Michael Mueller
Michael Mueller el 1 de Mzo. de 2019
Comentada: Stephen Gray el 27 de Abr. de 2025
I am trying to creat an ARIMA model to predict future data points. Using the Econometrics App I fitted a model ARIMA(4,1,3) that fits the data very well. I then try to forcast the data using forcast.
SteelData1Log = log(SteelData1);
SteelData1LogDiff = [NaN; diff(SteelData1Log)];
ARIMA_SteelData1LogDiff2 = arima('Constant',NaN,'ARLags',1:4,'D',1,'MALags',1:3,'Distribution','Gaussian');
ARMA = estimate(ARIMA_SteelData1LogDiff2,SteelData1LogDiff,'Display','off');
yF1 = forecast(ARMA,44,'Y0',August2017.Var2(1:100));
The result does not follow the data, and has a logorithmic trend to it.
  2 comentarios
BN
BN el 18 de Nov. de 2022
Dear @Michael MuellerMichael,
Did you find an answer for this problem?
Stephen Gray
Stephen Gray el 27 de Abr. de 2025
I too am looking for an answer to this!

Iniciar sesión para comentar.

Respuestas (0)

Categorías

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

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by