'forecast.Arima' function missing from'forecast' package

匿名 (未验证) 提交于 2019-12-03 01:58:03

问题:

Unable to find forecast.Arima function in forecast package. Error displayed "forecast.Arima" not found. Can forecast function be used in place of 'forecast.Arima' function ? I am using forecast 8.1.

Secondly, the output from ARIMA is flat at mean for the future dates. Is this because I am using 'forecast' function.

library(forecast)

arima.forecast 

回答1:

forecast.Arima is not missing, it is just not exported in v8.1+. Use forecast instead, which will call forecast.Arima when required.

Flat forecasts are common. See https://robjhyndman.com/hyndsight/flat-forecasts/



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