ComeçarComece de graça

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 exercício faz parte do curso

Forecasting Product Demand in R

Ver curso

Instruções do exercício

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

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

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

# Calculate the MAPE
MAPE <- mape(___, ___)
print(MAPE)
Editar e executar o código