开始使用免费开始使用

Calculating residuals from regression

Your previous model that predicts the log of sales from the log of price along with holiday and promotion effects is saved in the model_MET_hi_full object. Your data frame that has the data that built this model is in the object MET_hi_train. Now let's see where we went wrong.

本练习是课程的一部分

Forecasting Product Demand in R

查看课程

练习说明

  • Calculate the residuals from the model model_MET_hi_full and save as MET_hi_full_res.
  • Convert these residuals into an xts object. Remember your date index is stored as dates_train.

交互式实操练习

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

# Calculate the residuals from the model
MET_hi_full_res <- ___(___)

# Convert the residuals to an xts object
MET_hi_full_res <- xts(___, order.by = ___)
编辑并运行代码