Nothing
# Tests for boot_bw_estimate function/s ----------------------------------------
test_that("boot_bw_estimate works as expected", {
boot_df <- boot_bw(
x = indicatorsHH, w = villageData, statistic = bootClassic,
params = "anc1", replicates = 99
)
expect_s3_class(boot_bw_estimate(boot_df), "data.frame")
boot_df <- boot_bw(
x = indicatorsHH, w = villageData, statistic = bootClassic,
params = "anc1", replicates = 99, strata = "region"
)
expect_s3_class(boot_bw_estimate(boot_df), "data.frame")
expect_error(boot_bw_estimate(boot_df$boot_data))
})
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.