LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Forecasting Product Demand in R

Kurs anzeigen

Anleitung zur Übung

  • Forecast your residual model.
  • The forecast should be for 22 weeks.
  • Print the first 10 observations from this forecast using the head function.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Forecast 22 weeks with your model: for_MET_hi_arima
for_MET_hi_arima <- ___(___, h = ___)

# Print first 10 observations
head(___, n = ___)
Code bearbeiten und ausführen