"industry_jobs" Payroll jobs by industry division, state, sex, and age
group (Table 4)
"industry_wages" Total wages by industry division, state, sex, and age
group (Table 4)
"sa4_jobs" Payroll jobs by statistical area 4 (SA4) and state (Table 5)
"sa3_jobs Payroll jobs by statistical area 4 (SA4), statistical
area 3 (SA3), and state (Table 5)
"subindustry_jobs" Payroll jobs by industry sub-division and
industry division (Table 6)
"empsize_jobs" Payroll jobs by size of employer (number of
employees) and state (Table 7)
The default is "industry_jobs".
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()).
Value
A tidy (long) `tbl_df`. The number of columns differs based on the `series`.
Details
The ABS 'Weekly Payroll Jobs and Wages in Australia' dataset
is very 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.
# NOT RUN {# Fetch payroll jobs by industry and state (the default, "industry_jobs")read_payrolls()
# Payroll jobs by employer sizeread_payrolls("empsize_jobs")
# }# NOT RUN {# }