Skip to contents

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.

Value

A dataframe comprising county-level data on current NFIP policies

Examples

if (FALSE) { # \dontrun{
get_ihp_registrations(
   county_geoids = c("01001", "01003"),
   api = TRUE)
} # }