Forecast future values of demand
Perfect! You have created the estimated future prices. Now you just need to score these with your regression models to forecast future sales demand for your high end product.
Your validation predictions are in your workspace as MET_hi_valid. The model with only prices is saved in your workspace as model_MET_hi.
Este exercício faz parte do curso
Forecasting Product Demand in R
Instruções do exercício
- Predict sales for each product for the first 22 weeks of 2017 using the
predictfunction. - Convert your predictions back to sales from log of sales!
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Predict the log of sales for your high end product
pred_MET_hi <- ___(___, newdata = ___)
# Convert predictions out of log scale
pred_MET_hi <- exp(___)