abbr_to_name {covidcast} | R Documentation |
Get state names from state abbreviations
Description
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.
Usage
abbr_to_name(
abbr,
ignore.case = FALSE,
perl = FALSE,
fixed = FALSE,
ties_method = c("first", "all")
)
Arguments
abbr |
Vector of state abbreviations to look up. |
ignore.case , perl , fixed |
Arguments to pass to |
ties_method |
If "first", then only the first match for each name is returned. If "all", then all matches for each name are returned. |
Value
A vector of state names if ties_method
equals "first", and a list
of state names otherwise.
See Also
Examples
abbr_to_name("PA")
abbr_to_name(c("PA", "PR", "DC"))
[Package covidcast version 0.5.2 Index]