ff_county_fips | R Documentation |
This function performs a cross-walk between county names and county FIPS codes. It takes NC county FIPS codes and input and outputs the county name.
ff_county_fips(county_fips_codes)
county_fips_codes |
NC county FIPS codes. |
The county name as a string corresponding to the county FIPS code.
df <- data.frame(county_fips_code = c(1, 3, 67), estimate = c(121, 156, 190)) ff_county_fips(df$county_fips_code) # Directly adding county names as a column dplyr::mutate(df, county_name = ff_county_fips(df$county_fips_code))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.