Week 7: ARIMA models
Tutorial exercises
- Complete Exercises 5, 7, 11, 14 from Section 8.8 of the book.
- Tutorial learning objectives.
What you will learn this week
- Stationarity and differencing
- Random Walk Models
Pre-seminar activities
Read Sections 9.1-9.2 of the textbook and watch all embedded videos.
Lectorial activities
What sorts of transformations and differencing are needed to make the
Cementseries fromaus_productionstationary? Do the tests agree with your decisions?Generate the
a10and theh02series from thePBStsibble we explored earlier using the code below.a10 <- PBS |> filter(ATC2 == "A10") |> summarise(Cost = sum(Cost)) h02 <- PBS |> filter(ATC2 == "H02") |> summarise(Cost = sum(Cost))What are the features of these series in terms of stationarity and what operations do you need to take to turn them into stationary series.
Explore the the Algerian exports series from the
global_economytsibble. Is the series stationary? Is the series white noise?Exam 2023
- Section A: Q2, Q3
- Section B: Q1, Q2, Q3 (a-f)
- Section C: all questions
Seminar code
Assignments
Weekly quiz
- Week 7 quiz is due on Monday 20 April.