`graphCohort()` aids in the visualisation of cohorts timelines, useful to get a grip on intersections.
Source:R/visualisations.R
graphCohort.Rd
`graphCohort()` aids in the visualisation of cohorts timelines, useful to get a grip on intersections.
Usage
graphCohort(subject_id, cohorts = list())
Examples
hosptalised <- tibble::tibble(cohort_definition_id = 2,
subject_id = 1,
cohort_start_date = "2018-01-01",
cohort_end_date = "2018-01-10")
icu_patients <- tibble::tibble(cohort_definition_id = 5,
subject_id = 1,
cohort_start_date = "2018-01-02",
cohort_end_date = "2018-01-04")
drugs_treatment <- tibble::tibble(cohort_definition_id = 5,
subject_id = 1,
cohort_start_date = "2018-01-07",
cohort_end_date = "2018-01-09")
TestGenerator::graphCohort(subject_id = 1, cohorts = list("hosptalised" = hosptalised,
"icu_patients" = icu_patients,
"drugs_treatment" = drugs_treatment))
#> Warning: Ignoring unknown aesthetics: fill