See the information about the tsibble package and find the description of the aus_retail dataset.
aus_retail
class(aus_retail)
[1] "tbl_ts" "tbl_df" "tbl" "data.frame"
Note that the dataset is not in the R Environment. This makes it hard to see what the dataset contains. To load the dataset we use the data() R function.
data(aus_production)head(aus_production)
Open the dataset, does it look like there is more than on time series contained in the dataset?
When the dataset is piped into autoplot, the first time series column is plotted.
aus_production |>autoplot()
Plot variable not specified, automatically selected `.vars = Beer`
aus_production |>autoplot(Beer)
Why does this look different from the picture in Section 4?