Skip to contents

Returns one of the bundled classification crosswalks. Used internally by ato_harmonise() and available for user-level panel work.

Usage

ato_crosswalk(name = c("anzsic", "anzsco", "postcode", "cpi", "erp", "budget"))

Arguments

name

One of "anzsic", "anzsco", "postcode", "cpi", "erp", "budget".

Value

A data frame.

Details

Bundled crosswalks (at division/major-group level):

  • "anzsic": ANZSIC 2006 to 2020 (19 divisions, complete)

  • "anzsco": ANZSCO 2013 to 2021 (8 major groups, complete)

  • "postcode": postcode first-digit to state anchors

  • "cpi": ABS CPI annual, base 2011-12 = 1.0

  • "erp": ABS Estimated Resident Population, June 30 annual

  • "budget": Final Budget Outcome reference totals

For 4-digit ANZSIC, 6-digit ANZSCO, or postcode-to-SA2/LGA/CED crosswalks, fetch the full tables from ABS. The bundled division/major-group level covers cross-year ATO Taxation Statistics joins at the industry headings used in all ATO tables.

References

Australian Bureau of Statistics (2006). Australian and New Zealand Standard Industrial Classification (ANZSIC). Catalogue 1292.0.

Australian Bureau of Statistics (2020). ANZSIC 2006 Update, cat. 1292.0, divisional structure. Used by ATO Taxation Statistics from 2022-23.

Australian Bureau of Statistics (2013). Australian and New Zealand Standard Classification of Occupations (ANZSCO). Catalogue 1220.0.

Australian Bureau of Statistics (2022). ANZSCO Revised Edition, cat. 1220.0. Used by ATO Taxation Statistics from 2022-23 onward.

Examples

ato_crosswalk("anzsic")
#>    anzsic_2006_code                               anzsic_2006_name
#> 1                 A               Agriculture Forestry and Fishing
#> 2                 B                                         Mining
#> 3                 C                                  Manufacturing
#> 4                 D       Electricity Gas Water and Waste Services
#> 5                 E                                   Construction
#> 6                 F                                Wholesale Trade
#> 7                 G                                   Retail Trade
#> 8                 H                Accommodation and Food Services
#> 9                 I               Transport Postal and Warehousing
#> 10                J       Information Media and Telecommunications
#> 11                K               Financial and Insurance Services
#> 12                L         Rental Hiring and Real Estate Services
#> 13                M Professional Scientific and Technical Services
#> 14                N            Administrative and Support Services
#> 15                O               Public Administration and Safety
#> 16                P                         Education and Training
#> 17                Q              Health Care and Social Assistance
#> 18                R                   Arts and Recreation Services
#> 19                S                                 Other Services
#>    anzsic_2020_code                               anzsic_2020_name relationship
#> 1                 A               Agriculture Forestry and Fishing   one-to-one
#> 2                 B                                         Mining   one-to-one
#> 3                 C                                  Manufacturing   one-to-one
#> 4                 D       Electricity Gas Water and Waste Services   one-to-one
#> 5                 E                                   Construction   one-to-one
#> 6                 F                                Wholesale Trade   one-to-one
#> 7                 G                                   Retail Trade   one-to-one
#> 8                 H                Accommodation and Food Services   one-to-one
#> 9                 I               Transport Postal and Warehousing   one-to-one
#> 10                J       Information Media and Telecommunications   one-to-one
#> 11                K               Financial and Insurance Services   one-to-one
#> 12                L         Rental Hiring and Real Estate Services   one-to-one
#> 13                M Professional Scientific and Technical Services   one-to-one
#> 14                N            Administrative and Support Services   one-to-one
#> 15                O               Public Administration and Safety   one-to-one
#> 16                P                         Education and Training   one-to-one
#> 17                Q              Health Care and Social Assistance   one-to-one
#> 18                R                   Arts and Recreation Services   one-to-one
#> 19                S                                 Other Services   one-to-one
ato_crosswalk("cpi")
#>    financial_year cpi_all_groups_australia base_2011_12
#> 1         1994-95                     61.0        0.615
#> 2         1995-96                     63.7        0.642
#> 3         1996-97                     64.6        0.651
#> 4         1997-98                     65.2        0.657
#> 5         1998-99                     66.3        0.668
#> 6         1999-00                     68.4        0.689
#> 7         2000-01                     72.6        0.732
#> 8         2001-02                     74.8        0.754
#> 9         2002-03                     77.0        0.776
#> 10        2003-04                     79.0        0.796
#> 11        2004-05                     81.1        0.817
#> 12        2005-06                     84.0        0.847
#> 13        2006-07                     86.6        0.873
#> 14        2007-08                     89.4        0.901
#> 15        2008-09                     92.5        0.932
#> 16        2009-10                     94.5        0.953
#> 17        2010-11                     97.4        0.981
#> 18        2011-12                     99.2        1.000
#> 19        2012-13                    101.7        1.025
#> 20        2013-14                    104.2        1.050
#> 21        2014-15                    106.1        1.069
#> 22        2015-16                    107.4        1.082
#> 23        2016-17                    109.3        1.102
#> 24        2017-18                    111.6        1.125
#> 25        2018-19                    114.1        1.150
#> 26        2019-20                    115.6        1.165
#> 27        2020-21                    118.4        1.193
#> 28        2021-22                    123.6        1.246
#> 29        2022-23                    132.9        1.339
#> 30        2023-24                    137.4        1.385