Skip to contents

FIPS - Get state abbreviations from any type of FIPS codes

Usage

fips2state_abbrev(fips)

Arguments

fips

vector of FIPS

Value

vector of abbreviations like "NY", "LA", "DE", etc.

Examples

  cbind(
    stfips    = fips_lead_zero(1:80),
    ST     = fips2state_abbrev(1:80),
    statename = fips2statename(1:80)
  )