View source: R/read_payrolls.R
read_payrolls | R Documentation |
Import a tidy tibble of ABS Payroll Jobss data.
read_payrolls(
series = c("industry_jobs", "subindustry_jobs", "empsize_jobs"),
path = Sys.getenv("R_READABS_PATH", unset = tempdir())
)
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, |
The ABS Payroll Jobs
dataset 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. It was then renamed Payroll Jobs and the frequency was reduced, with further modifications to the data released.
A tidy (long) tbl_df
. The number of columns differs based on the series
.
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.