# \donttest{
library(CohortCharacteristics)
library(omopgenerics)
library(dplyr, warn.conflicts = FALSE)
library(clock)
cdm <- mockCohortCharacteristics(numberIndividuals = 1000)
cdm[["cohort1"]] <- cdm[["cohort1"]] |>
filter(get_year(cohort_start_date) >= 2000) |>
recordCohortAttrition("Restrict to cohort_start_date >= 2000") |>
filter(get_year(cohort_end_date) < 2020) |>
recordCohortAttrition("Restrict to cohort_end_date < 2020") |>
compute(temporary = FALSE, name = "cohort1")
result <- summariseCohortAttrition(cdm$cohort1)
result |>
filter(group_level == "cohort_2") |>
plotCohortAttrition()
# }
Run the code above in your browser using DataLab