11:00-12:30
17 September 2023
Look at the quarterly tourism data for the Snowy Mountains
snowy <- tourism |> filter(Region == "Snowy Mountains")
autoplot()
gg_season()
gg_subseries()
Produce a calendar plot for the pedestrian data from one location and one year.
pedestrian
We have introduced the following functions: gg_lag and ACF. Use these functions to explore the four time series: Bricks from aus_production, Lynx from pelt, Close price of Amazon from gafa_stock, Demand from vic_elec. Can you spot any seasonality, cyclicity and trend? What do you learn about the series?
gg_lag
ACF
Bricks
aus_production
Lynx
pelt
Close
gafa_stock
Demand
vic_elec
You can compute the daily changes in the Google stock price in 2018 using
dgoog <- gafa_stock |> filter(Symbol == "GOOG", year(Date) >= 2018) |> mutate(trading_day = row_number()) |> update_tsibble(index=trading_day, regular=TRUE) |> mutate(diff = difference(Close))
Does diff look like white noise?
diff