This function returns a data frame about poverty 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"
.
- poverty
One of the following values:
"families below poverty"
"persistent poverty"
"persons below poverty"
"persons < 150% of poverty"
.
- 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)
.
- sex
One of the following values:
"both sexes"
"male"
"female"
.
See also
Other demographics:
demo_crowding()
,
demo_education()
,
demo_food()
,
demo_income()
,
demo_insurance()
,
demo_language()
,
demo_mobility()
,
demo_population()
,
demo_svi()
,
demo_workforce()
Examples
if (FALSE) {
demo_poverty(
area = "WA",
areatype = "county",
poverty = "persistent poverty"
)
demo_poverty(
area = "usa",
areatype = "state",
poverty = "families below poverty",
race = "black"
)
demo_poverty(
area = "dc",
areatype = "hsa",
poverty = "families below poverty",
race = "All Races (includes Hispanic)"
)
}