Returns the ATO's Pay As You Go (PAYG) withholding data: employer counts, total withholding amounts, and employee counts by industry and state. Used by researchers studying labour market taxation, wage growth, and employer compliance.
Examples
# \donttest{
op <- options(ato.cache_dir = tempdir())
try({
payg <- ato_payg(year = "2022-23")
head(payg)
})
#> Error in ato_payg(year = "2022-23") :
#> Could not find a PAYG withholding package on data.gov.au.
#> ℹ Browse: <https://data.gov.au/data/organization/australiantaxationoffice>
options(op)
# }