Download some monthly Australian retail data from the book website. These represent retail sales in various categories for different Australian states, and are stored in a MS-Excel file.
a. You can read the data into $\mathrm{R}$ with the following script:
retaildata <- readxl: :read_excel("retail.xlsx", skip=1)
The second argument ( skip=1) is required because the Excel sheet has two header rows.
b. Select one of the time series as follows (but replace the column name with your own chosen column):
$$
\begin{gathered}
\text { myts <- ts(retaildata[, "A3349873A"], } \\
\text { frequency }=12, \operatorname{start}=c(1982,4))
\end{gathered}
$$
c. Explore your chosen retail time series using the following functions:
autoplot(), ggseasonplot(), ggsubseriesplot(), gglagplot(),
ggAcf()
autoplot(), ggseasonplot(), ggsubseriesplot(), gglagplot() ,
$\operatorname{ggAcf}()$
Can you spot any seasonality, cyclicity and trend? What do you learn about the series?