# NOT RUN {
# Download and tidy all time series spreadsheets
# from the Wage Price Index (6345.0)
# }
# NOT RUN {
wpi <- read_abs("6345.0")
# }
# NOT RUN {
# Download table 1 from the Wage Price Index
# }
# NOT RUN {
wpi_t1 <- read_abs("6345.0", tables = "1")
# }
# NOT RUN {
# Or tables 1 and 2a from the WPI
# }
# NOT RUN {
wpi_t1_t2a <- read_abs("6345.0", tables = c("1", "2a"))
# }
# NOT RUN {
# Get two specific time series, based on their time series IDs
# }
# NOT RUN {
cpi <- read_abs(series_id = c("A2325806K", "A2325807L"))
# }
# NOT RUN {
# Get series IDs using the `read_abs_series()` wrapper function
# }
# NOT RUN {
cpi <- read_abs_series(c("A2325806K", "A2325807L"))
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab