Skip to contents

Get per capita household size based on state or LGA name

Usage

get_per_capita_household_size(state = NULL, lga = NULL)

Arguments

state

state name

lga

lga name

Value

Numeric of length 1 - the per capita household size for a given state or LGA.

Author

Nick Golding

Examples

get_per_capita_household_size(lga = "Fairfield (C)")
#> [1] 4.199372
get_per_capita_household_size(state = "NSW")
#> [1] 3.4407
if (FALSE) {
# cannot specify both state and LGA
get_per_capita_household_size(state = "NSW", lga = "Fairfield (C)")
}