Nothing
source("../deprivation-profile.R")
test_that("headcount ratio works correctly", {
dm <- df_household |>
create_deprivation_matrix(deprivation_profile, .mpi_specs = mpi_specs)
hr_uncensored <- dm$uncensored |>
compute_headcount_ratio(.aggregation = attr_spec$aggregation)
expect_equal(nrow(hr_uncensored), 1)
expect_equal(ncol(hr_uncensored), 11)
hr_censored <- dm$censored |>
compute_headcount_ratio(.aggregation = attr_spec$aggregation)
expect_equal(nrow(hr_censored), 1)
expect_equal(ncol(hr_censored), 11)
})
test_that("headcount ratio works correctly with aggregation", {
mpi_specs <- use_global_mpi_specs(.uid = "uuid", .aggregation = "class")
attr_spec <- attributes(mpi_specs)
dm <- df_household |>
create_deprivation_matrix(deprivation_profile, .mpi_specs = mpi_specs)
hr_uncensored <- dm$uncensored |>
compute_headcount_ratio(.aggregation = attr_spec$aggregation)
expect_equal(nrow(hr_uncensored), 2)
expect_equal(ncol(hr_uncensored), 12)
hr_censored <- dm$censored |>
compute_headcount_ratio(.aggregation = attr_spec$aggregation)
expect_equal(nrow(hr_censored), 2)
expect_equal(ncol(hr_censored), 12)
expect_contains(names(hr_censored), "class")
})
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.