开始使用免费开始使用

Forecasting residuals with time series

Now that you have a model for these residuals, we need to forecast them. Your model is saved as MET_hi_arima.

本练习是课程的一部分

Forecasting Product Demand in R

查看课程

练习说明

  • Forecast your residual model.
  • The forecast should be for 22 weeks.
  • Print the first 10 observations from this forecast using the head function.

交互式实操练习

通过完成这段示例代码来试试这个练习。

# Forecast 22 weeks with your model: for_MET_hi_arima
for_MET_hi_arima <- ___(___, h = ___)

# Print first 10 observations
head(___, n = ___)
编辑并运行代码