CommencerCommencer gratuitement

Ensemble forecast for new product

Now that you have two different types of forecasts - a time series and a regression - let's try to ensemble them together to improve the forecast. Your forecast objects for_MET_sp_xts and pred_MET_sp_xts are in your workspace along with your validation data object MET_sp_v.

Cet exercice fait partie du cours

Forecasting Product Demand in R

Afficher le cours

Instructions

  • Take the average of your two forecasts.
  • Calculate the MAPE of this ensemble forecast.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Ensemble the two forecasts
for_MET_sp_en <- (___ + ___)/2

# Calculate the MAPE
MAPE <- mape(___, ___)
print(MAPE)
Modifier et exécuter le code