Get dataframe of counties, states, and fips codes that are represented in the ARCOS data
county_list(key = "WaPo")
Arguments
- key
Key needed to make query successful
Examples
# \donttest{
library(arcos)
counties <- county_list(key="WaPo")
head(counties)
#> BUYER_COUNTY BUYER_STATE countyfips
#> 1 AUTAUGA AL 01001
#> 2 BALDWIN AL 01003
#> 3 BARBOUR AL 01005
#> 4 BIBB AL 01007
#> 5 BLOUNT AL 01009
#> 6 BULLOCK AL 01011
# }