Regression for holiday / promotional effects
Now that you have created the New Year's indicator variable, let's see if it is significantly different than the usual sales pattern using regression.
Your data.frame with log of sales and log of prices is saved in your workspace as MET_hi_train. Your New Year's variable is stored as newyear.
本练习是课程的一部分
Forecasting Product Demand in R
练习说明
- Create a new dataset,
MET_hi_train_2by combiningMET_hi_trainand your new year variable as a vector. - Build a regression model for the high end product in the metropolitan region. The model should predict the log of sales (
log_sales) with the log of price (log_price) and the New Year's variable (newyear) and use the newMET_hi_train_2dataset you just created.
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Create MET_hi_train_2 by adding newyear
MET_hi_train_2 <- data.frame(MET_hi_train, as.vector(___))
colnames(MET_hi_train_2)[3] <- "newyear"
# Build regressions for the product
model_MET_hi_full <- lm(___ ~ ___ + ___, data = ___)