Use tidycensus to obtain the data needed to create a choropleth map.
get_acs_data(
variable = NULL,
tableId = NULL,
column_idx = NULL,
map,
endyear,
span,
census_api_key,
include_moe = FALSE
)
The variable you wish to plot. A list of available census variables can be obtained using tidycensus::load_variables()
Alternatively, you may specify the ACS table you wish to plot. If the table has more than one variable inside it, you must also specify the index of the column you wish to plot.
The index of the desired column within the table.
The type map you wish to create; either 'state', 'county', 'zip', or 'tract'
The end year of the survey to use.
Either 1, 3, or 5, the ACS vintage you wish to use.
Optional. Census API keys can be obtained at: https://api.census.gov/data/key_signup.html
Whether to include the 90 percent margin of error.