A tibble containing the HUD ZIP Code to County Crosswalk file for Missouri's ZIP Codes in 2023's first quarter.
data(zi_mo_hud)
A data frame with 1749 rows and 8 variables:
five-digit United States Postal Service ZIP Code
five-digit county FIPS code
for ZIP Codes that cross county boundaries, the proportion of the ZIP Code's residential customers in the given county
for ZIP Codes that cross county boundaries, the proportion of the ZIP Code's commercial customers in the given county
for ZIP Codes that cross county boundaries, the proportion of the ZIP Code's other customers in the given county
for ZIP Codes that cross county boundaries, the proportion of the ZIP Code's total customers in the given county
United States Postal Service city name
United States Postal Service state abbreviation
The data included in zi_mo_hud
can be replicated with the
following code: zi_load_crosswalk(zip_source = "HUD", year = 2023,
qtr = 1, target = "COUNTY", query = "MO")
. This assumes your HUD API key
is stored in your .Rprofile
file as hud_key
.
utils::str(zi_mo_hud)
utils::head(zi_mo_hud)
Run the code above in your browser using DataLab