name_to_fips: Get FIPS or CBSA codes from county or metropolitan area names
Description
Look up FIPS or CBSA codes by county or metropolitan area names,
respectively; these functions are based on grep(), and hence allow for
regular expressions.
A vector of FIPS or CBSA codes if ties_method equals "first", and a
list of FIPS or CBSA codes otherwise.
Arguments
name
Vector of county or metropolitan area names to look up.
ignore.case, perl, fixed
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.
ties_method
If "first", then only the first match for each name is
returned. If "all", then all matches for each name are returned.
state
Two letter state abbreviation (case insensitive) indicating a
parent state used to restrict the search. For example, when state = "NY",
then name_to_fips() searches only over only counties lying in New York
state, whereas name_to_cbsa() searches over the metropolitan areas lying,
either fully or partially (as a metropolitan area can span several states),
in New York state. If NULL, the default, then the search is performed
US-wide (not restricted to any state in particular).