availability: Check availability of datasets

check_cb_availR Documentation

Check availability of datasets

Description

These two functions check for the availability of datasets needed to formulate API queries.

  • check_cb_avail finds all available vintages of major surveys under the Census Bureau's ACS and Decennial programs for the mainland US.

  • check_qwi_avail finds all years of QWI data available per state.

Previously, these were datasets built into the package, which ran the risk of being outdated and therefore missing the availability of new data. These functions need to read data from the internet, but are memoized so that the results are reasonably up-to-date without having to make API calls repeatedly.

Usage

check_cb_avail()

check_qwi_avail()

Value

For check_cb_avail: A data frame with columns for vintage, program (e.g. "acs"), survey (e.g. "acs5"), and title, as returned from the Census Bureau API.

For check_qwi_avail': A data frame with columns for state FIPS code, earliest year available, and most recent year available.

See Also

US Census Bureau API Discovery Tool LED Extraction Tool

Other utils: batch_csv_dump(), fix_cogs(), jenks(), separate_acs(), town_names()

Examples

## Not run: 
if(interactive()){
 cb_avail <- check_cb_avail()
 cb_avail |>
   dplyr::filter(program == "dec", vintage == 2020)
 }

## End(Not run)
## Not run: 
if(interactive()){
 qwi_avail <- check_qwi_avail()
 qwi_avail |>
   dplyr::filter(state_code == "09")
 }

## End(Not run)

CT-Data-Haven/cwi documentation built on Feb. 27, 2025, 10:46 a.m.