Import a tidy tibble of ABS Job Mobility data
read_job_mobility(
tables = "all",
path = Sys.getenv("R_READABS_PATH", unset = tempdir())
)
Either "all"
(the default) to import all tables, or a
vector of table numbers, such as 1
or c(2, 4)
.
Local directory in which downloaded ABS time series spreadsheets should be stored. By default, 'path' takes the value set in the environment variable "R_READABS_PATH". If this variable is not set, any files downloaded by read_abs() will be stored in a temporary directory (tempdir()).
if (FALSE) { # \dontrun{
# Get all tables from the ABS Job Mobility series
read_job_mobility()
# Get tables 1 and 2
read_job_mobility(c(1, 2))
} # }