A tibble containing agency names, id numbers, and the county that they serve.

data(agencies)

Format

A data frame with 79 rows and 5 variables:

id

agency id number

name

agency name

valid

did agency make any traffic stops in 2017?

countyfp

county FIPS code

namelsad

county name

Source

Missouri Attorney General's Office

Examples

str(agencies)
#> Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 79 obs. of 5 variables: #> $ id : num 376 382 383 385 387 393 397 11 13 14 ... #> $ name : chr "Ballwin" "Bel-Nor" "Bel-Ridge" "Bella Villa" ... #> $ valid : logi TRUE TRUE TRUE TRUE TRUE TRUE ... #> $ countyfp: num 189 189 189 189 189 189 189 189 189 189 ... #> $ namelsad: chr "St. Louis County" "St. Louis County" "St. Louis County" "St. Louis County" ...
head(agencies)
#> # A tibble: 6 x 5 #> id name valid countyfp namelsad #> <dbl> <chr> <lgl> <dbl> <chr> #> 1 376 Ballwin TRUE 189 St. Louis County #> 2 382 Bel-Nor TRUE 189 St. Louis County #> 3 383 Bel-Ridge TRUE 189 St. Louis County #> 4 385 Bella Villa TRUE 189 St. Louis County #> 5 387 Bellefontaine Neighbors TRUE 189 St. Louis County #> 6 393 Berkeley TRUE 189 St. Louis County