Nothing
test_that("tidySummarisedResult", {
mocksum <- mockSummarisedResult()
expect_no_error(res0 <- tidySummarisedResult(result = mocksum, pivotEstimatesBy = "estimate_name"))
expect_true(nrow(res0 |> dplyr::filter(.data$variable_name == "settings")) == 0)
expect_true(all(c("cohort_name", "age_group", "sex", "count",
"mean", "sd", "percentage") %in% colnames(res0)))
expect_true(class(res0$percentage) == "numeric")
expect_true(class(res0$mean) == "numeric")
expect_true(class(res0$count) == "integer")
expect_equal(tidy(mocksum), res0 |> dplyr::select(!"result_id"))
expect_no_error(res1 <- tidySummarisedResult(mocksum, splitGroup = FALSE, splitAdditional = FALSE,
splitStrata = FALSE, pivotEstimatesBy = c("variable_name", "variable_level", "estimate_name")))
expect_true(all(c("group_name", "group_level", "strata_name", "strata_level",
"additional_name", "additional_level") %in%
colnames(res1)))
expect_true(all(c("number subjects_count", "age_mean", "age_sd", "Medications_Amoxiciline_count",
"Medications_Amoxiciline_percentage", "Medications_Ibuprofen_count",
"Medications_Ibuprofen_percentage") %in% colnames(res1)))
expect_no_error(res2 <- tidySummarisedResult(mocksum,
splitGroup = FALSE,
splitAdditional = FALSE,
settings = character(),
pivotEstimatesBy = c("variable_name", "estimate_name"),
nameStyle = "{estimate_name}_{variable_name}"))
expect_false("logic_settings" %in% colnames(res2))
expect_true(all(c("count_number subjects", "mean_age", "sd_age",
"count_Medications", "percentage_Medications") %in% colnames(res2)))
expect_true(class(res2$percentage_Medications) == "numeric")
expect_true(class(res2$mean_age) == "numeric")
expect_true(class(res2$count_Medications) == "integer")
expect_no_error(res3 <- tidySummarisedResult(mocksum, splitGroup = FALSE, splitAdditional = FALSE, splitStrata = FALSE,
pivotEstimatesBy = NULL))
expect_true(all(colnames(res3) %in% c(
colnames(mocksum), "result_type", "package_name", "package_version"
)))
# 2 id's:
mocksum2 <- mocksum |> omopgenerics::bind(mocksum)
expect_no_error(res4 <- tidySummarisedResult(result = mocksum2))
expect_equal(tidy(mocksum2), res4 |> dplyr::select(!"result_id"))
})
test_that("tidySummarisedResult, dates", {
result <- dplyr::tibble(
"result_id" = integer(1),
"cdm_name" = "mock",
"group_name" = "cohort_name",
"group_level" = c(rep("cohort1", 9), rep("cohort2", 9)),
"strata_name" = rep(c(
"overall", rep("age_group &&& sex", 4), rep("sex", 2), rep("age_group", 2)
), 2),
"strata_level" = rep(c(
"overall", "<40 &&& Male", ">=40 &&& Male", "<40 &&& Female",
">=40 &&& Female", "Male", "Female", "<40", ">=40"
), 2),
"variable_name" = "number subjects",
"variable_level" = NA_character_,
"estimate_name" = "count",
"estimate_type" = "integer",
"estimate_value" = round(10000000*stats::runif(18)) |> as.character(),
"additional_name" = "overall",
"additional_level" = "overall"
) |>
dplyr::union_all(
dplyr::tibble(
"result_id" = integer(1),
"cdm_name" = "mock",
"group_name" = "cohort_name",
"group_level" = c(rep("cohort1", 9), rep("cohort2", 9)),
"strata_name" = rep(c(
"overall", rep("age_group &&& sex", 4), rep("sex", 2), rep("age_group", 2)
), 2),
"strata_level" = rep(c(
"overall", "<40 &&& Male", ">=40 &&& Male", "<40 &&& Female",
">=40 &&& Female", "Male", "Female", "<40", ">=40"
), 2),
"variable_name" = "start date",
"variable_level" = NA_character_,
"estimate_name" = "date",
"estimate_type" = "date",
"estimate_value" = as.Date("2020-10-01") |> as.character(),
"additional_name" = "overall",
"additional_level" = "overall"
)
) |>
omopgenerics::newSummarisedResult(
settings = dplyr::tibble(
"result_id" = integer(1),
"result_type" = "mock_summarised_result",
"package_name" = "visOmopResults",
"package_version" = utils::packageVersion("visOmopResults") |>
as.character()
)
)
expect_no_error(result_out <- tidySummarisedResult(result))
expect_true(class(as.Date(result_out |> dplyr::pull(date))) == "Date")
expect_equal(tidy(result), result_out |> dplyr::select(!"result_id"))
# check no more aguments in tidy method
expect_warning(tidy(result, splitStrata = 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.