What about price?
Stop! You forgot to incorporate the effect of temporary PRICE
changes in your model. You can correct this mistake by using the function update()
. The update()
function re-fits the dummy response model by updating and evaluating the log(SALES) ~ DISPLAY + COUPON + DISPLAYCOUPON
relation stored in the dummy.model
object.
Este exercício faz parte do curso
Building Response Models in R
Instruções do exercício
- Update the
dummy.model
object forPRICE
by using theupdate()
function.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Update the model for PRICE
___(dummy.model, . ~ . + ___)