A tibble containing the USPS Three-digit ZIP Code labels for August 2024.
Usage
data(zi_mo_usps)
Format
A data frame with 37 rows and 3 variables:
- zip3
three-digit United States Postal Service ZIP Code
- label_area
area associated with the three-digit ZIP Code
- label_state
state associated with the three-digit ZIP Code
Details
The data included in zi_mo_usps
can be replicated with the
following code: zi_load_labels(type = "zip3", source = "USPS",
vintage = 202408)
. After downloading the data, subset to
label_state == "MO"
.
Examples
utils::str(zi_mo_usps)
#> tibble [37 × 3] (S3: tbl_df/tbl/data.frame)
#> $ zip3 : chr [1:37] "620" "622" "628" "629" ...
#> $ label_area : chr [1:37] "ST LOUIS" "ST LOUIS" "ST LOUIS" "ST LOUIS" ...
#> $ label_state: chr [1:37] "MO" "MO" "MO" "MO" ...
utils::head(zi_mo_usps)
#> # A tibble: 6 × 3
#> zip3 label_area label_state
#> <chr> <chr> <chr>
#> 1 620 ST LOUIS MO
#> 2 622 ST LOUIS MO
#> 3 628 ST LOUIS MO
#> 4 629 ST LOUIS MO
#> 5 630 ST LOUIS MO
#> 6 631 ST LOUIS MO