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
.
Este ejercicio forma parte del curso
Forecasting Product Demand in R
Instrucciones del ejercicio
- Take the average of your two forecasts.
- Calculate the MAPE of this ensemble forecast.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Ensemble the two forecasts
for_MET_sp_en <- (___ + ___)/2
# Calculate the MAPE
MAPE <- mape(___, ___)
print(MAPE)