Time seiries forecasting SARIMA

16 visualizaciones (últimos 30 días)
Vasilis Chatziilias
Vasilis Chatziilias el 20 de Mzo. de 2020
Editada: Arthur Wong el 4 de Mayo de 2020
How forecasting works?
example: y = xlsread("file.xlsx");
SARIMA_y = arima('Constant',NaN,'ARLags',[],'D',1,'MALags',1,'SARLags',12,'Seasonality',0,'SMALags',[],'Distribution','Gaussian');
SARIMA_y = estimate(SARIMA_y,y,'Display','off');
Y = forecast(SARIMA_y(y),y,12);
Even though the values of y go up and down, the result of Y is a 12x1 vector that only goes up.
How to forecast demand?
  1 comentario
Arthur Wong
Arthur Wong el 4 de Mayo de 2020
Editada: Arthur Wong el 4 de Mayo de 2020
this is same happening to me when i am using ARIMA. The ahead foreacast just a straight line and not as expected got curve or changes

Iniciar sesión para comentar.

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