ComenzarEmpieza gratis

auto.arima function

Let's try to forecast the residuals from the model using time series! Your residuals are stored as MET_hi_full_res.

Este ejercicio forma parte del curso

Forecasting Product Demand in R

Ver curso

Instrucciones del ejercicio

  • Use the auto.arima function to build a model on the residuals.
  • Save the model object as MET_hi_arima.
  • Look at a summary of the model.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Build an ARIMA model on the residuals: MET_hi_arima
MET_hi_arima <- ___(___)

# Look at a summary of the model
___(___)
Editar y ejecutar código