Nothing
test_that("ard_missing() works", {
expect_error(
ard <- ard_missing(ADSL, by = "ARM", variables = "BMIBL"),
NA
)
expect_snapshot(
ard |>
dplyr::select(-"fmt_fn") |>
as.data.frame()
)
# confirm missing rate is correct
expect_equal(
ard |>
dplyr::filter(stat_name %in% "p_miss") |>
dplyr::pull(stat) |>
unlist(),
ADSL |>
dplyr::mutate(BMIBL = is.na(BMIBL)) |>
dplyr::summarise(
.by = ARM,
stat = mean(BMIBL)
) |>
dplyr::pull(stat)
)
})
test_that("ard_missing(stat_label) argument works", {
# formula
expect_snapshot(
ard_missing(
data = ADSL,
by = "ARM",
variables = c("AGE", "BMIBL"),
stat_label = everything() ~ list(c("N_obs", "N_miss") ~ "N, miss")
) |>
as.data.frame() |>
dplyr::select(stat_name, stat_label) |>
dplyr::filter(stat_name %in% c("N_obs", "N_miss")) |>
unique()
)
# list
expect_snapshot(
ard_missing(
data = ADSL,
by = "ARM",
variables = c("AGEGR1", "SEX"),
stat_label = everything() ~ list(p_miss = "% miss", p_nonmiss = "% non miss")
) |>
as.data.frame() |>
dplyr::select(stat_name, stat_label) |>
dplyr::filter(stat_name %in% c("p_miss", "p_nonmiss")) |>
unique()
)
# variable-specific
expect_snapshot(
ard_missing(
data = ADSL,
by = "ARM",
variables = c("AGE", "BMIBL"),
stat_label = AGE ~ list(N_obs = "Number of Obs")
) |>
as.data.frame() |>
dplyr::select(variable, stat_name, stat_label) |>
dplyr::filter(stat_name == "N_obs") |>
unique()
)
})
test_that("ard_missing() with grouped data works", {
expect_equal(
ADSL |>
dplyr::group_by(ARM) |>
ard_missing(variables = "BMIBL"),
ard_missing(
data = ADSL,
by = "ARM",
variables = "BMIBL"
)
)
})
test_that("ard_missing() follows ard structure", {
expect_silent(
ADSL |>
dplyr::group_by(ARM) |>
ard_missing(variables = "BMIBL") |>
check_ard_structure(method = FALSE)
)
})
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.