Nothing
skip_on_cran()
test_that("tbl_ard_wide_summary(cards)", {
# works with standard use
expect_snapshot(
cards::ard_stack(
trial,
cards::ard_dichotomous(variables = response),
cards::ard_categorical(variables = grade),
.missing = TRUE,
.attributes = TRUE
) |>
tbl_ard_wide_summary() |>
as.data.frame()
)
# works without missing or attributes
expect_snapshot(
cards::ard_stack(
trial,
cards::ard_dichotomous(variables = response),
cards::ard_categorical(variables = grade)
) |>
tbl_ard_wide_summary() |>
as.data.frame()
)
})
test_that("tbl_ard_wide_summary(cards) messaging", {
# error when there are grouping variables
expect_snapshot(
error = TRUE,
cards::ard_continuous(trial, by = trt, variables = age) |>
tbl_ard_wide_summary()
)
})
test_that("tbl_ard_wide_summary(type) messaging", {
# error when there are grouping variables
expect_snapshot(
error = TRUE,
cards::ard_stack(
trial,
cards::ard_continuous(variables = age),
.missing = TRUE,
.attributes = TRUE
) |>
tbl_ard_wide_summary(type = age ~ "categorical")
)
expect_snapshot(
error = TRUE,
cards::ard_stack(
trial,
cards::ard_dichotomous(variables = response),
cards::ard_continuous(variables = age),
.missing = TRUE,
.attributes = TRUE
) |>
tbl_ard_wide_summary()
)
})
test_that("tbl_ard_summary(label) argument works", {
expect_equal(
cards::ard_stack(
trial,
cards::ard_continuous(variables = age),
.missing = TRUE,
.attributes = TRUE,
.total_n = TRUE
) |>
tbl_ard_wide_summary(label = age ~ "Updated AGE!") |>
getElement("table_body") |>
dplyr::filter(row_type == "label") |>
dplyr::pull(label),
"Updated AGE!"
)
expect_equal(
cards::ard_stack(
trial,
cards::ard_continuous(variables = age),
.attributes = FALSE
) |>
tbl_ard_wide_summary(label = age ~ "Updated AGE!") |>
getElement("table_body") |>
dplyr::filter(row_type == "label") |>
dplyr::pull(label),
"Updated AGE!"
)
})
test_that("tbl_ard_wide_summary() existing 'gts_column'", {
# test there is no error when passing an ARD with an existing 'gts_column'
tbl <-
trial |>
tbl_wide_summary(include = c(response, grade))
expect_equal(
tbl_ard_wide_summary(
cards = tbl$cards[[1]],
include = c(response, grade)
) |>
as.data.frame(),
as.data.frame(tbl)
)
})
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.