ComeçarComece de graça

Bottom-up forecast for whole state

Now that you have forecasts for each region you can use the bottom-up hierarchy to calculate a forecast for the whole state! Your regional forecasts are saved as for_SEC_t_xts, for_MET_t_xts, and for_M_t_xts.

Este exercício faz parte do curso

Forecasting Product Demand in R

Ver curso

Instruções do exercício

  • Sum up all of your regional forecasts into a variable called for_state to forecast the whole state!

Exercício interativo prático

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

# Calculate the state sales forecast: for_state
for_state <- ___ + ___ + ___

# See the forecasts
for_state
Editar e executar o código