在预测包中找不到forecast.Arima函数。错误显示"forecast.Arima“not found。预测函数可以用来代替'forecast.Arima‘函数吗?我使用的是预测8.1。
其次,ARIMA的输出与未来日期的均值持平。这是因为我使用的是‘预测’功能吗?
库(预测)
arima.forecast <- forecast(arima1, h=30)发布于 2017-07-20 05:52:58
forecast.Arima没有丢失,只是没有在v8.1+中导出。改为使用forecast,它将在需要时调用forecast.Arima。
预测持平是很常见的。请参阅https://robjhyndman.com/hyndsight/flat-forecasts/
https://stackoverflow.com/questions/45193907
复制相似问题