Get startedGet started for free

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.

This exercise is part of the course

Forecasting Product Demand in R

View Course

Exercise instructions

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

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

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

# Calculate the MAPE
MAPE <- mape(___, ___)
print(MAPE)
Edit and Run Code