CommencerCommencer gratuitement

ARIMA Forecasting

Before we build an ensemble model we need an actual time series forecast of the demand itself so we can average the forecasts. The training data object MET_hi is saved in your workspace as well as the validation data MET_hi_v.

Cet exercice fait partie du cours

Forecasting Product Demand in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Build an ARIMA model using the auto.arima function
MET_hi_model_arima <- ___(___)

# Forecast the ARIMA model you just built above
for_MET_hi <- ___(___, h = ___)
Modifier et exécuter le code