What sorts of transformations and differencing are needed to make the
Cementseries fromaus_productionstationary? Do the tests agree with your decisions?Generate the
a10and theh02series from thePBStsibble we explored earlier using the code below.a10 <- PBS |> filter(ATC2 == "A10") |> summarise(Cost = sum(Cost)) h02 <- PBS |> filter(ATC2 == "H02") |> summarise(Cost = sum(Cost))What are the features of these series in terms of stationarity and what operations do you need to take to turn them into stationary series.
Explore the the Algerian exports series from the
global_economytsibble. Is the series stationary? Is the series white noise?