Look up state names by state abbreviations (including District of Columbia
and Puerto Rico); this function is based on grep()
, and hence allows for
regular expressions.
abbr_to_name(
abbr,
ignore.case = FALSE,
perl = FALSE,
fixed = FALSE,
ties_method = c("first", "all")
)
Vector of state abbreviations to look up.
Arguments to pass to grep()
, with the same
defaults as in the latter function. Hence, by default, regular expressions
are used; to match against a fixed string (no regular expressions), set
fixed = TRUE
.
If "first", then only the first match for each name is returned. If "all", then all matches for each name are returned.
A vector of state names if ties_method
equals "first", and a list
of state names otherwise.
abbr_to_name("PA")
#> PA
#> "Pennsylvania"
abbr_to_name(c("PA", "PR", "DC"))
#> PA PR
#> "Pennsylvania" "Puerto Rico Commonwealth"
#> DC
#> "District of Columbia"