Forecasting residuals with time series
Now that you have a model for these residuals, we need to forecast them. Your model is saved as MET_hi_arima
.
Este exercício faz parte do curso
Forecasting Product Demand in R
Instruções do exercício
- Forecast your residual model.
- The forecast should be for 22 weeks.
- Print the first 10 observations from this forecast using the
head
function.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
# Forecast 22 weeks with your model: for_MET_hi_arima
for_MET_hi_arima <- ___(___, h = ___)
# Print first 10 observations
head(___, n = ___)