Nothing
test_that("plot working", {
skip_if_not_installed("omock")
cdm <- omock::mockCdmReference(cdmName = "mock") |>
omock::mockPerson(nPerson = 1000) |>
omock::mockObservationPeriod() |>
omock::mockCohort(
name = "marker_cohort",
numberCohorts = 2,
cohortName = c("marker_a", "marker_b"),
seed = 11
) |>
omock::mockCohort(
name = "index_cohort",
numberCohorts = 2,
cohortName = c("index_a", "index_b"),
seed = 33
)
db <- DBI::dbConnect(duckdb::duckdb(), ":memory:")
cdm <- CDMConnector::copyCdmTo(db,
cdm,
schema = "main",
overwrite = TRUE)
cdm <- generateSequenceCohortSet(cdm, "index_cohort", "marker_cohort", "joined_cohort", combinationWindow = c(0, Inf))
result <- summariseTemporalSymmetry(cohort = cdm$joined_cohort, timescale = "year")
plotTS <- plotTemporalSymmetry(result = result)
plotTS2 <- plotTemporalSymmetry(result = result, xlim = c(-5,5))
plotTS3 <- plotTemporalSymmetry(result = result, colours = c("white", "black"))
plotTS4 <- plotTemporalSymmetry(result = result, plotTitle = "Test")
plotTS5 <- plotTemporalSymmetry(result = result, labs = c("lab1", "lab2"))
plotTS6 <- plotTemporalSymmetry(result = result, scales = "fixed")
expect_true("ggplot" %in% (plotTS %>% class()))
expect_true("ggplot" %in% (plotTS2 %>% class()))
expect_true("ggplot" %in% (plotTS3 %>% class()))
expect_true("ggplot" %in% (plotTS5 %>% class()))
expect_true("ggplot" %in% (plotTS6 %>% class()))
CDMConnector::cdmDisconnect(cdm)
})
test_that("expected errors", {
skip_on_cran()
cdm <- omock::mockCdmReference(cdmName = "mock") |>
omock::mockPerson(nPerson = 100) |>
omock::mockObservationPeriod() |>
omock::mockCohort(
name = "marker_cohort",
numberCohorts = 2,
cohortName = c("marker_a", "marker_b"),
seed = 11
) |>
omock::mockCohort(
name = "index_cohort",
numberCohorts = 2,
cohortName = c("index_a", "index_b"),
seed = 33
)
db <- DBI::dbConnect(duckdb::duckdb(), ":memory:")
cdm <- CDMConnector::copyCdmTo(db,
cdm,
schema = "main",
overwrite = TRUE)
cdm <- generateSequenceCohortSet(cdm, "index_cohort", "marker_cohort", "joined_cohort", combinationWindow = c(0, Inf))
result <- summariseTemporalSymmetry(cohort = cdm$joined_cohort)
expect_error(plotTemporalSymmetry("cdm", "joined_cohort"))
expect_error(plotTemporalSymmetry(cdm, "joinedd_cohort"))
expect_error(plotTemporalSymmetry(result = result, xlim = 2))
expect_error(plotTemporalSymmetry(result = result, xlim = "4"))
expect_error(plotTemporalSymmetry(result = result, xlim = 2))
expect_error(plotTemporalSymmetry(result = result, colours = "red"))
expect_error(plotTemporalSymmetry(result = result, colours = c(3,4)))
expect_error(plotTemporalSymmetry(result = result, plotTitle = 2))
expect_error(plotTemporalSymmetry(result = result, plotTitle = c("1", "2")))
expect_error(plotTemporalSymmetry(result = result, labs = NULL))
expect_error(plotTemporalSymmetry(result = result, labs = c(2,3)))
expect_error(plotTemporalSymmetry(result = result, labs = c("a", "b", "c")))
expect_error(plotTemporalSymmetry(result = result, scales = "days"))
expect_error(plotTemporalSymmetry(result = result, scales = c("free", "fixed")))
CDMConnector::cdmDisconnect(cdm)
})
test_that("empty result error",{
skip_on_cran()
indexCohort <- dplyr::tibble(
cohort_definition_id = c(1, 1, 1, 1, 1, 2, 2, 2, 2, 2),
subject_id = c(1, 4, 2, 3, 5, 5, 4, 3, 6, 1),
cohort_start_date = as.Date(
c(
"2020-04-01", "2021-06-01", "2022-05-22", "2010-01-01", "2019-08-01", "2019-04-07", "2021-01-01", "2008-02-02", "2010-09-09", "2021-01-01"
)
),
cohort_end_date = as.Date(
c(
"2020-04-01", "2021-08-01", "2022-05-23", "2010-03-01", "2020-04-01", "2020-05-30", "2022-02-02", "2013-12-03", "2010-11-01", "2021-01-01"
)
)
)|>
dplyr::mutate(cohort_definition_id = as.integer(.data$cohort_definition_id),
subject_id = as.integer(.data$subject_id))
markerCohort <- dplyr::tibble(
cohort_definition_id = c(1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3),
subject_id = c(1, 3, 4, 2, 5, 1, 2, 3, 4, 5, 6),
cohort_start_date = as.Date(
c(
"2020-12-30", "2010-01-01","2021-05-25","2022-05-31", "2020-05-25", "2019-05-25", "2022-05-25", "2010-09-30", "2022-05-25", "2020-02-29", "2021-01-01"
)
),
cohort_end_date = cohort_start_date
)|>
dplyr::mutate(cohort_definition_id = as.integer(.data$cohort_definition_id),
subject_id = as.integer(.data$subject_id))
cdm <- mockCohortSymmetry(indexCohort = indexCohort,
markerCohort = markerCohort)
cdm <- generateSequenceCohortSet(cdm = cdm,
name = "joined_cohorts",
indexTable = "cohort_1",
markerTable = "cohort_2")
ts2 <- summariseTemporalSymmetry(cohort = cdm$joined_cohorts)
expect_no_error(
plotTemporalSymmetry(ts2)
)
CDMConnector::cdmDisconnect(cdm = cdm)
})
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.