开始使用免费开始使用

auto.arima function

Let's try to forecast the residuals from the model using time series! Your residuals are stored as MET_hi_full_res.

本练习是课程的一部分

Forecasting Product Demand in R

查看课程

练习说明

  • Use the auto.arima function to build a model on the residuals.
  • Save the model object as MET_hi_arima.
  • Look at a summary of the model.

交互式实操练习

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

# Build an ARIMA model on the residuals: MET_hi_arima
MET_hi_arima <- ___(___)

# Look at a summary of the model
___(___)
编辑并运行代码