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
.
Diese Übung ist Teil des Kurses
Forecasting Product Demand in R
Anleitung zur Übung
- Take the average of your two forecasts.
- Calculate the MAPE of this ensemble forecast.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Ensemble the two forecasts
for_MET_sp_en <- (___ + ___)/2
# Calculate the MAPE
MAPE <- mape(___, ___)
print(MAPE)