census_geo_api: Census Data download function.

View source: R/census_geo_api.R

census_geo_apiR Documentation

Census Data download function.

Description

census_geo_api retrieves U.S. Census geographic data for a given state.

Usage

census_geo_api(
  key = NULL,
  state,
  geo = "tract",
  age = FALSE,
  sex = FALSE,
  year = "2010",
  retry = 3,
  save_temp = NULL,
  counties = NULL
)

Arguments

key

A required character object. Must contain user's Census API key, which can be requested here.

state

A required character object specifying which state to extract Census data for, e.g., "NJ".

geo

A character object specifying what aggregation level to use. Use "county", "tract","block_group", "block", or "place". Default is "tract". Warning: extracting block-level data takes very long.

age

A TRUE/FALSE object indicating whether to condition on age or not. If FALSE (default), function will return Pr(Geolocation | Race). If TRUE, function will return Pr(Geolocation, Age | Race). If sex is also TRUE, function will return Pr(Geolocation, Age, Sex | Race).

sex

A TRUE/FALSE object indicating whether to condition on sex or not. If FALSE (default), function will return Pr(Geolocation | Race). If TRUE, function will return Pr(Geolocation, Sex | Race). If age is also TRUE, function will return Pr(Geolocation, Age, Sex | Race).

year

A character object specifying the year of U.S. Census data to be downloaded. Use "2010", or "2020". Default is "2010". Warning: 2020 U.S. Census data is downloaded only when age and sex are both FALSE.

retry

The number of retries at the census website if network interruption occurs.

save_temp

File indicating where to save the temporary outputs. Defaults to NULL. If specified, the function will look for an .RData file with the same format as the expected output.

counties

A vector of counties contained in your data. If NULL, all counties are pulled. Useful for smaller predictions where only a few counties are considered. Must be zero padded.

Details

This function allows users to download U.S. Census geographic data (2010 or 2020), at either the county, tract, block, or place level, for a particular state.

Value

Output will be an object of class list, indexed by state names. It will consist of the original user-input data with additional columns of Census geographic data.

References

Relies on get_census_api, get_census_api_2, and vec_to_chunk functions authored by Nicholas Nagle, available here.

Examples


## Not run: census_geo_api(key = "...", states = c("NJ", "DE"), geo = "block")
## Not run: census_geo_api(key = "...", states = "FL", geo = "tract", age = TRUE, sex = TRUE)
## Not run: census_geo_api(key = "...", states = "MA", geo = "place", age = FALSE, sex = FALSE,
 year = "2020")
## End(Not run)


wru documentation built on Oct. 22, 2022, 1:05 a.m.