Week 6: Exponential smoothing
Tutorial exercises
- Complete Exercises 1-5 from Section 8.8.
- Tutorial learning objectives.
- Week 6 Tutorial Solution.html
What you will learn this week
- Exponential smoothing methods with trend and seasonality
- ETS models
- Automatic model selection using the AICc
Pre-seminar activities
Read Sections 8.4-8.7 of the textbook and watch all embedded videos.
Slides for seminar
Seminar activities
Use the tsibble created from
tourism
for holiday travel in Victoria and Queensland. Plot the series to remind yourself what these look like.Use the
ETS()
function to fit models with additive and multiplicative errors to both series. Also letETS()
auto select models. Explore the fitted models and their residuals.Generate forecasts from the fitted models. Why is the multiplicative model needed for Victoria?
Generate the
h02
series from thePBS
tsibble using the code below. Plot the data and study it’s features. What ETS model would be appropriate for forecasting this data?<- PBS |> h02 filter(ATC2 == "H02") |> summarise(Cost = sum(Cost))
Find an
ETS
model and study it.Generate forecasts for the next few years.
Combine
STL
decomposition withETS
to forecast theh02
series.Exam 2024
- Section A: Q1, Q2
- Section B: Q3d, Q3e, Q3f
- Section C: all questions