We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In order to avoid having misaligned levels when using multi_geo_* and multiple years including 2022, can we re-level the groups?
counties = always the original 8 counties cogs = always cogs regions = DataHaven regions i.e., 6WFC, NHIR, etc.
yrs <- c(2022, 2012)
df <- yrs |> purrr::map(~cwi::multi_geo_acs(year = ., table = "B01003", towns = "all", counties = "all", regions = cwi::regions)) |> dplyr::bind_rows() |> dplyr::select(year, level, name) |> dplyr::filter(grepl("COG", name))
View(unique(df))
The text was updated successfully, but these errors were encountered:
camille-s
No branches or pull requests
In order to avoid having misaligned levels when using multi_geo_* and multiple years including 2022, can we re-level the groups?
counties = always the original 8 counties
cogs = always cogs
regions = DataHaven regions i.e., 6WFC, NHIR, etc.
yrs <- c(2022, 2012)
df <- yrs |> purrr::map(~cwi::multi_geo_acs(year = ., table = "B01003", towns = "all", counties = "all", regions = cwi::regions)) |>
dplyr::bind_rows() |>
dplyr::select(year, level, name) |>
dplyr::filter(grepl("COG", name))
View(unique(df))
The text was updated successfully, but these errors were encountered: