Week 9: ARIMA models
Tutorial exercises
- Complete Exercises 7, 8, 15 (a to c), 16 (a to c) from Section 9.11 of the book.
- Tutorial learning objectives.
- Week 9 Tutorial Solution.html
What you will learn this week
- Seasonal ARIMA models
- Computing forecasts for ARIMA models
- ARIMA vs ETS models
Pre-seminar activities
Read Sections 9.8-9.10 of the textbook and watch all embedded videos
Slides for seminar
Seminar activities
Identify, estimate and generate forecasts from ARIMA models for the
usmelec
,leisure
andh02
as specified below:<- as_tsibble(fpp2::usmelec) |> usmelec rename(Month = index, Generation = value) <- us_employment |> leisure filter(Title == "Leisure and Hospitality", year(Month) > 2000) |> mutate(Employed = Employed/1000) |> select(Month, Employed) <- PBS |> h02 filter(ATC2 == "H02") |> summarise(Cost = sum(Cost))
Identify, estimate and generate forecasts from ARIMA and ETS models for the
aus_economy
andcement
as specified below:<- global_economy |> filter(Code == "AUS") |> aus_economy mutate(Population = Population/1e6) <- aus_production |> cement select(Cement) |> filter_index("1988 Q1" ~ .)
Exam 2024
- Section A: Q5
- Section B: Q3 (g-h)
- Section D: all questions