Skip to content

Commit

Permalink
Add counties back into regions
Browse files Browse the repository at this point in the history
  • Loading branch information
camille-s committed Dec 19, 2023
1 parent ed0b94a commit 0839cc6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data-raw/make_regions.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ town2county <- cwi::xwalk |>
dplyr::rename(name = county) |>
dplyr::anti_join(town2reg, by = "name")

regions <- rbind(town2reg, town2cog) |>
regions <- dplyr::bind_rows(town2cog, town2reg, town2county) |>
split(~name) |>
purrr::map(dplyr::pull, town) |>
purrr::map(sort)
Expand Down
Binary file modified data/regions.rda
Binary file not shown.

0 comments on commit 0839cc6

Please sign in to comment.