This function returns a data frame about food demographics from State Cancer Profiles.
Arguments
- area
A state/territory abbreviation or USA.
- areatype
Either
"county"or"state".- food
One of the following values:
"food insecurity""limited access to healthy food".
- race
One of the following values:
"All Races (includes Hispanic)""White non-Hispanic""Black (includes Hispanic)""Hispanic (Any Race).
See also
Other demographics:
demo_crowding(),
demo_education(),
demo_income(),
demo_insurance(),
demo_language(),
demo_mobility(),
demo_population(),
demo_poverty(),
demo_svi(),
demo_workforce()
Examples
if (FALSE) {
demo_food(
area = "wa",
areatype = "county",
food = "food insecurity",
race = "black"
)
demo_food(
area = "usa",
areatype = "state",
food = "limited access to healthy food"
)
demo_food(
area = "pr",
areatype = "county",
food = "food insecurity",
race = "all races (includes hispanic)"
)
}