Get Individuals and Households Program (IHP) registrations
get_ihp_registrations.Rd
Get Individuals and Households Program (IHP) registrations
Usage
get_ihp_registrations(
geography = NULL,
state_fips,
file_name = "IndividualsAndHouseholdsProgramValidRegistrations_2024_10_13.parquet",
api = TRUE,
outpath = NULL
)
Arguments
- geography
Included only for API consistency; this must be NULL.
- state_fips
A character vector of two-digit state codes.
- file_name
The name (not the full path) of the Box file containing the raw data.
- api
If TRUE (default), query the API.
- outpath
The path to save the parquet-formatted datafile. Applicable only when
api = FALSE
.
Examples
if (FALSE) { # \dontrun{
get_ihp_registrations(
county_geoids = c("01001", "01003"),
api = TRUE)
} # }