50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

readabs (version 0.4.18)

read_job_mobility: Download and tidy ABS Job Mobility tables

Description

Import a tidy tibble of ABS Job Mobility data

Usage

read_job_mobility(
  tables = "all",
  path = Sys.getenv("R_READABS_PATH", unset = tempdir())
)

Arguments

tables

Either "all" (the default) to import all tables, or a vector of table numbers, such as 1 or c(2, 4).

path

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()).

Examples

Run this code
if (FALSE) {
# Get all tables from the ABS Job Mobility series
read_job_mobility()

# Get tables 1 and 2
read_job_mobility(c(1, 2))
}

Run the code above in your browser using DataLab