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 ejercicio forma parte del curso
Forecasting Product Demand in R
Instrucciones del ejercicio
- Forecast your residual model.
- The forecast should be for 22 weeks.
- Print the first 10 observations from this forecast using the
head
function.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Forecast 22 weeks with your model: for_MET_hi_arima
for_MET_hi_arima <- ___(___, h = ___)
# Print first 10 observations
head(___, n = ___)