get_places {CDCPLACES} | R Documentation |
Use this function to access CDC PLACES API data. Measures are sourced from the Behavioral Risk Factor Surveillance System and the American Community Survey ACS.
get_places(
geography = "county",
state = NULL,
measure = NULL,
county = NULL,
release = "2023",
geometry = FALSE
)
geography |
The level of desired geography. Currently supports 'county' and 'census'. |
state |
Specify the state of the desired data using the two letter abbreviation. Supports multiple states if desired. |
measure |
Specify the measures of the data pull. Supports multiple states if desired. For a full list of available measures, see the function 'get_dictionary'. |
county |
Specify the county of the desired data using the full name of the county, with a capital letter. |
release |
Specify the year of release for the PLACES data set. Currently supports years 2020-2023. |
geometry |
if FALSE (the default), return a regular data frame of PLACES data. If TRUE, uses the tigris package to return an sf data frame with simple feature geometry in the 'geometry' column. |
A tibble that contains observations for each measure (adjusted and unadjusted prevalence) and geographic level.
get_places(geography = "county", state = "MI", measure = "SLEEP", release = "2023")
get_places(geography = "county", state = c("MI", "OH"),
measure = c("SLEEP", "ACCESS2"), release = "2023")