Forecasting Values are coming same in R

≡放荡痞女 提交于 2019-12-03 21:38:15

By using model = "ANN" you are fitting a simple exponential smoothing model with additive errors (A). See help(ets) for possible models or leave the model argument out for automatic model selection. Your model includes no trend and no seasonality (NN).

Mathematical details on the possible models are given in A state space framework for automatic forecasting using exponential smoothing methods as stated on the help page for ets. As explained on pages 441 and 442, the series level l_t is a linear function of the original time series Y_t. In a model without trend and seasonality (e.g. ANN) the forecasts F_{t+h} are not dependent on h, F_{t+h} = l_t. This is why the forecasts in the above example are the same for all horizons, only the confidence intervals widen with increasing h.

I guess a discussion on which model is appropriate would be OT here, but I think your approach using exponential smoothing is reasonable given the short time series.

Praveen

Also, what I found is that if you have time series with smaller number of values, then you will get the same forecasts. I guess this is due to the fact that the model is unable to derive seasonality or trend components from the available time series. But when I included more past data, I got better forecasts.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!