Nothing
if(Sys.getenv("CENSUS_API_KEY") != "") {
test_that('Roll-ups of proportions between levels for race behave as expected', {
skip_on_cran()
future::plan(future::multisession)
r <- suppressMessages(get_census_data(
key = NULL,
state = c("DE"),
census.geo = "block",
))
r_tract_from_block <- r$DE$block |>
dplyr::group_by(tract) |>
dplyr::summarize(
sum_whi = sum(r_whi),
sum_bla = sum(r_bla),
sum_his = sum(r_his),
sum_asi = sum(r_asi),
sum_oth = sum(r_oth)
)
r_tract_level <- r$DE$tract |>
dplyr::select(tract, r_whi:r_oth) |>
dplyr::group_by(tract) |>
dplyr::summarize(
sum_whi = sum(r_whi),
sum_bla = sum(r_bla),
sum_his = sum(r_his),
sum_asi = sum(r_asi),
sum_oth = sum(r_oth)
)
r_county_from_tract <- r$DE$tract |>
dplyr::select(county, r_whi:r_oth) |>
dplyr::group_by(county) |>
dplyr::summarize(
sum_whi = sum(r_whi),
sum_bla = sum(r_bla),
sum_his = sum(r_his),
sum_asi = sum(r_asi),
sum_oth = sum(r_oth)
)
r_county_level <- r$DE$county |>
dplyr::select(county, r_whi:r_oth) |>
dplyr::group_by(county) |>
dplyr::summarize(
sum_whi = sum(r_whi),
sum_bla = sum(r_bla),
sum_his = sum(r_his),
sum_asi = sum(r_asi),
sum_oth = sum(r_oth)
)
expect_true(
all.equal(
colSums(r$DE$block[, c('r_whi', 'r_bla', 'r_his', 'r_asi', 'r_oth')]),
c('r_whi' = 1, 'r_bla' = 1, 'r_his' = 1, 'r_asi' = 1, 'r_oth' = 1)
)
)
expect_equal(r_county_from_tract, r_county_level, tolerance = 1e-7)
expect_equal(r_tract_level, r_tract_from_block, tolerance = 1e-7)
})
test_that('Roll-ups of population sums between levels for race behave as expected', {
future::plan(future::multisession)
r <- suppressMessages(get_census_data(
key = NULL,
state = c("WY"),
census.geo = "block",
))
r_sum_from_block <- r$WY$block |>
dplyr::select(-state, -county, -tract, -block, -dplyr::starts_with("r_")) |>
colSums()
r_sum_from_tract <- r$WY$tract |>
dplyr::select(-state, -county, -tract, -dplyr::starts_with("r_")) |>
colSums()
r_sum_from_county <- r$WY$county |>
dplyr::select(-state, -county, -dplyr::starts_with("r_")) |>
colSums()
expect_equal(r_sum_from_block, r_sum_from_tract)
expect_equal(r_sum_from_block, r_sum_from_county)
r_zcta_level <- suppressMessages(get_census_data(
key = NULL,
state = "WY",
census.geo = "zcta"
))
r_sum_from_zcta <- r_zcta_level$WY$zcta |>
dplyr::select(-state, -zcta, -dplyr::starts_with("r_")) |>
colSums()
expect_equal(r_sum_from_block, r_sum_from_zcta, tolerance = 0.001)
})
test_that('Roll-ups for ZIP and county race sum to same for state', {
r_zcta_level <- suppressMessages(get_census_data(
key = NULL,
state = "RI",
census.geo = "zcta"
))
r_county_level <- suppressMessages(get_census_data(
key = NULL,
state = "RI",
census.geo = "county"
))
expect_equal(
r_zcta_level$RI$zcta |>
dplyr::select(-state, -zcta, -dplyr::starts_with("r_")) |>
colSums(),
r_county_level$RI$county |>
dplyr::select(-state, -county, -dplyr::starts_with("r_")) |>
colSums(),
tolerance = 0.001
)
})
test_that('Roll-ups of population sums between levels for race/sex/age behave as expected', {
skip_on_cran()
future::plan(future::multisession)
r <- suppressMessages(get_census_data(
key = NULL,
state = c("AK"),
census.geo = "block",
sex = TRUE,
age = TRUE
))
r_sum_from_block <- r$AK$block |>
dplyr::select(dplyr::starts_with("r_")) |>
colSums()
r_sum_from_tract <- r$AK$tract |>
dplyr::select(dplyr::starts_with("r_")) |>
colSums()
r_sum_from_county <- r$AK$county |>
dplyr::select(dplyr::starts_with("r_")) |>
colSums()
expect_equal(r_sum_from_block, r_sum_from_tract)
expect_equal(r_sum_from_block, r_sum_from_county)
r_zcta_level <- suppressMessages(get_census_data(
key = NULL,
state = "AK",
census.geo = "zcta",
sex = TRUE,
age = TRUE
))
r_sum_from_zcta <- r_zcta_level$AK$zcta |>
dplyr::select(dplyr::starts_with("r_")) |>
colSums()
expect_equal(r_sum_from_block, r_sum_from_zcta, tolerance = 0.001)
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.