read_payrolls {readabs} | R Documentation |
Download and tidy ABS payroll jobs and wages data
Description
Import a tidy tibble of ABS Weekly Payrolls data.
Usage
read_payrolls(
series = c("industry_jobs", "subindustry_jobs", "empsize_jobs", "sex_age_jobs"),
path = Sys.getenv("R_READABS_PATH", unset = tempdir())
)
Arguments
series |
Character. Must be one of:
The default is "industry_jobs". |
path |
Local directory in which downloaded ABS time series
spreadsheets should be stored. By default, |
Details
The ABS Weekly Payroll Jobs
dataset is useful to analysts of the Australian labour market.
It draws upon data collected
by the Australian Taxation Office as part of its Single-Touch Payroll
initiative and supplements the monthly Labour Force Survey. Unfortunately,
the data as published by the ABS (1) is not in a standard time series
spreadsheet; and (2) is messy in various ways that make it hard to
read in R. This convenience function uses download_abs_data_cube()
to
import the payrolls data, and then tidies it up.
Note that this ABS release used to be called Weekly Payroll Jobs and Wages Australia. The total wages series were removed from this release in mid-2023 and it was renamed to Weekly Payroll Jobs. The ability to read total wages indexes using this function was therefore also removed.
Value
A tidy (long) tbl_df
. The number of columns differs based on the series
.
Examples
## Not run:
# Fetch payroll jobs by industry and state (the default, "industry_jobs")
read_payrolls()
# Payroll jobs by employer size
read_payrolls("empsize_jobs")
## End(Not run)