Time seiries forecasting SARIMA
조회 수: 17 (최근 30일)
이전 댓글 표시
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
Arthur Wong
2020년 5월 4일
편집: Arthur Wong
2020년 5월 4일
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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Conditional Mean Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!