Get per capita household size based on state or LGA name
Source:R/get_abs_per_capita_household_size.R
get_abs_per_capita_household_size.RdGet per capita household size based on state or LGA name
Examples
get_abs_per_capita_household_size(lga = "Fairfield (C)")
#> [1] 4.199372
get_abs_per_capita_household_size(state = "NSW")
#> [1] 3.4407
# cannot specify both state and LGA - this will error
try(get_abs_per_capita_household_size(state = "NSW", lga = "Fairfield (C)"))
#> Error in get_abs_per_capita_household_size(state = "NSW", lga = "Fairfield (C)") :
#> only one of state and lga may be specified