Forecasting global temperatures
Now you can try forecasting real data.
Here, you will forecast the annual global temperature deviations globtemp
to 2050. Recall that in previous exercises, you fit an ARIMA(0,1,2) model to the data. You will refit the model to confirm it, and then forecast the series 35 years into the future.
The astsa package is preloaded and the data are plotted.
Este ejercicio forma parte del curso
ARIMA Models in R
Instrucciones del ejercicio
- Fit an ARIMA(0,1,2) model to the data using
sarima()
. Based on your previous analysis this was the best model for theglobtemp
data. Recheck the parameter significance in the t-table output and check the residuals for any departures from the model assumptions. - Use
sarima.for()
to forceast your global temperature data 35 years ahead to 2050 using the ARIMA(0,1,2) fit.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Fit an ARIMA(0,1,2) to globtemp and check the fit
# Forecast data 35 years into the future