--- title: "Applying cohort restrictions" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{a02_applying_cohort_restrictions} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, eval = TRUE, message = FALSE, warning = FALSE, comment = "#>" ) library(CDMConnector) library(dplyr, warn.conflicts = FALSE) if (Sys.getenv("EUNOMIA_DATA_FOLDER") == ""){ Sys.setenv("EUNOMIA_DATA_FOLDER" = file.path(tempdir(), "eunomia"))} if (!dir.exists(Sys.getenv("EUNOMIA_DATA_FOLDER"))){ dir.create(Sys.getenv("EUNOMIA_DATA_FOLDER")) downloadEunomiaData() } ``` For this example we'll use the Eunomia synthetic data from the CDMConnector package. ```{r} library(CDMConnector) library(CohortConstructor) con <- DBI::dbConnect(duckdb::duckdb(), dbdir = eunomia_dir()) cdm <- cdm_from_con(con, cdm_schema = "main", write_schema = c(prefix = "my_study_", schema = "main")) ``` Let's start by creating two drug cohorts, one for users of diclofenac and another for users of acetaminophen. ```{r} cdm$medications <- conceptCohort(cdm = cdm, conceptSet = list("diclofenac" = 1124300, "acetaminophen" = 1127433), name = "medications") cohortCount(cdm$medications) ``` As well as our medication cohorts, let's also make another cohort containing individuals with a record of a GI bleed. Later we'll use this cohort when specifying inclusion/ exclusion criteria. ```{r} cdm$gi_bleed <- conceptCohort(cdm = cdm, conceptSet = list("gi_bleed" = 192671), name = "gi_bleed") ``` ## Keep only the first record per person Individuals can contribute multiple records per cohort. However now we'll keep only their earliest cohort entry of the remaining records using `requireIsFirstEntry()` from CohortConstructor. We can see that after this we have one record per person for each cohort. ```{r} cdm$medications <- cdm$medications %>% requireIsFirstEntry(indexDate = "cohort_start_date") cohortCount(cdm$medications) ``` Note, applying this criteria later after applying other criteria would result in a different result. Here we're requiring that individuals meet inclusion criteria at the time of their first use of diclofenac or acetaminophen. ## Applying restrictions on patient demographics Using `requireDemographics()` we'll require that individuals in our medications cohort are female and, relative to their cohort start date, are between 18 and 85 with at least 30 days of prior observation time in the database. ```{r} cdm$medications <- cdm$medications %>% requireDemographics(indexDate = "cohort_start_date", ageRange = list(c(18, 85)), sex = "Female", minPriorObservation = 30) ``` We can then see how many people have people have been excluded based on these demographic requirements. ```{r} cohort_attrition(cdm$medications) %>% dplyr::filter(reason == "Demographic requirements") %>% dplyr::glimpse() ``` ## Restrictions on calendar dates Next we can use `requireInDateRange()` to keep only those records where cohort entry was between a particular date range. ```{r} cdm$medications <- cdm$medications %>% requireInDateRange(indexDate = "cohort_start_date", dateRange = as.Date(c("2000-01-01", "2015-01-01"))) ``` Again, we can track cohort attrition ```{r} cohort_attrition(cdm$medications) %>% dplyr::filter(reason == "cohort_start_date between 2000-01-01 and 2015-01-01") %>% dplyr::glimpse() ``` ## Restrictions on cohort presence We could require that individuals in our medication cohorts have a history of GI bleed. To do this we can use the `requireCohortIntersect()` function, requiring that individuals have one or more intersections with the GI bleed cohort. ```{r} cdm$medications_gi_bleed <- cdm$medications %>% requireCohortIntersect(intersections = c(1,Inf), targetCohortTable = "gi_bleed", targetCohortId = 1, indexDate = "cohort_start_date", window = c(-Inf, 0), name = "medications_gi_bleed") cohort_count(cdm$medications_gi_bleed) ``` Instead of requiring that individuals have history of GI bleed, we could instead require that they are don't have any history of it. In this case we can again use the `requireCohortIntersect()` function, but this time set the intersections argument to 0 to require individuals' absence in this other cohort rather than their presence in it. ```{r} cdm$medications_no_gi_bleed <- cdm$medications %>% requireCohortIntersect(intersections = 0, targetCohortTable = "gi_bleed", targetCohortId = 1, indexDate = "cohort_start_date", window = c(-Inf, 0), name = "medications_no_gi_bleed") cohort_count(cdm$medications_no_gi_bleed) ```