Nothing
test_that("splitGroup", {
tib <- dplyr::tibble(
group_name = c("cohort_name", "cohort_name &&& age", "age &&& sex"),
group_level = c("acetaminophen", "ibuprofen &&& 10 to 19", "20 to 29 &&& Male"),
x = c("cohort_name", "cohort_name &&& age", "age &&& sex"),
y = c("acetaminophen", "ibuprofen &&& 10 to 19", "20 to 29 &&& Male"),
z = c(1, 2, 3),
a = c("a", "b", "c")
)
expect_error(tib |> splitGroup(NA_character_))
expect_no_error(res0 <- tib |> splitGroup())
expect_false("group_name" %in% colnames(res0))
expect_false("group_level" %in% colnames(res0))
expect_true(all(c("cohort_name", "age", "sex") %in% colnames(res0)))
expect_equal(res0$cohort_name, c("acetaminophen", "ibuprofen", "overall"))
expect_equal(res0$age, c("overall", "10 to 19", "20 to 29"))
expect_equal(res0$sex, c("overall", "overall", "Male"))
expect_no_error(res1 <- tib |> splitNameLevelInternal(keep = TRUE))
expect_true("group_name" %in% colnames(res1))
expect_true("group_level" %in% colnames(res1))
expect_true(all(c("cohort_name", "age", "sex") %in% colnames(res1)))
expect_warning(tib |> splitNameLevelInternal(keep = TRUE) |> splitGroup())
expect_no_error(res2 <- tib |> splitNameLevelInternal(name = "x", level = "y", keep = TRUE))
cols <- colnames(res1) |> sort()
expect_equal(
res1 |> dplyr::select(dplyr::all_of(cols)),
res2 |> dplyr::select(dplyr::all_of(cols))
)
expect_error(tib |> splitNameLevelInternal(name = "expo_group", level = "exposure_level"))
expect_error(tib |> splitNameLevelInternal(level = NA_character_))
expect_error(tib |> splitNameLevelInternal(level = "a"))
expect_no_error(res3 <- tib |> splitNameLevelInternal(name = "x", level = "y", keep = TRUE, fill = "Any"))
expect_true(all(res2$age[res2$age != "overall"] == res3$age[res2$age != "overall"]))
expect_true(all(res2$sex[res2$sex != "overall"] == res3$sex[res2$sex != "overall"]))
expect_true(all(res3$age[res2$age == "overall"] == "Any"))
expect_true(all(res3$sex[res2$sex == "overall"] == "Any"))
tib <- dplyr::tibble(
group_name = c("overall", "cohort_name &&& age", "age &&& sex"),
group_level = c("overall", "ibuprofen &&& 10 to 19", "20 to 29 &&& Male"),
z = c(1, 2, 3),
a = c("a", "b", "c")
)
expect_false("overall" %in% colnames(splitGroup(tib)))
expect_true(all(groupColumns(tib) == c("cohort_name", "age", "sex")))
result <- mockSummarisedResult()
expect_identical(
result |> splitAll(),
result |> splitGroup() |> splitStrata() |> splitAdditional()
)
res <- result |>
splitAll(exclude = c("group", "variable"))
expect_true(all(c("group_name", "group_level") %in% colnames(res)))
expect_false(all(c("strata_name", "strata_level") %in% colnames(res)))
expect_false(all(c("additional_name", "additional_level") %in% colnames(res)))
result$group_name[1] <- "cohort_name &&& not_present"
expect_warning(res <- result |> splitAll())
expect_true(all(c("group_name", "group_level") %in% colnames(res)))
expect_false(all(c("strata_name", "strata_level") %in% colnames(res)))
expect_false(all(c("additional_name", "additional_level") %in% colnames(res)))
})
test_that("deprecation warning", {
result <- data.frame(
group_name = c("age_group", "sex"),
group_level = c("18-25", "male"),
other_column = c("value1", "value2")
)
expect_warning(
output <- splitNameLevel(result, name = "group_name", level = "group_level")
)
})
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.