Use the tsibble created from
tourismfor 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
h02series from thePBStsibble using the code below. Plot the data and study it’s features. What ETS model would be appropriate for forecasting this data?h02 <- PBS |> filter(ATC2 == "H02") |> summarise(Cost = sum(Cost))Find an
ETSmodel and study it.Generate forecasts for the next few years.
Combine
STLdecomposition withETSto forecast theh02series.Exam 2024 - Review this
- Section A: Q1, Q2
- Section B: Q3d, Q3e, Q3f
- Section C: all questions