This function returns a data frame about crowding demographics from State Cancer Profiles.
Arguments
- area
A state/territory abbreviation or USA.
- areatype
One of the following values:
"county""hsa"(Health Service Area)"state".
- crowding
The only permissible value is
"household with >1 person per room".- race
One of the following values:
"All Races (includes Hispanic)""White (includes Hispanic)""White Non-Hispanic""Black""Amer. Indian/Alaskan Native (includes Hispanic)""Asian or Pacific Islander (includes Hispanic)""Hispanic (Any Race)".
See also
Other demographics:
demo_education(),
demo_food(),
demo_income(),
demo_insurance(),
demo_language(),
demo_mobility(),
demo_population(),
demo_poverty(),
demo_svi(),
demo_workforce()
Examples
if (FALSE) {
demo_crowding(
area = "WA",
areatype = "county",
crowding = "household with >1 person per room",
race = "All Races (includes Hispanic)"
)
demo_crowding(
area = "usa",
areatype = "state",
crowding = "household with >1 person per room",
race = "All Races (includes Hispanic)"
)
demo_crowding(
area = "pr",
areatype = "hsa",
crowding = "household with >1 person per room",
race = "black"
)
}