1.1 Introduction

Concept sets play an important role when working with data in the format of the OMOP CDM. They can be used to create cohorts after which, as we’ve seen in the previous vignette, we can identify intersections between the cohorts. PatientProfiles adds another option for working with concept sets which is use them for adding associated variables directly without first having to create a cohort.

It is important to note, and is explained more below, that results may differ when generating a cohort and then identifying intersections between two cohorts compared to working directly with concept sets. The creation of cohorts will involve the collapsing of overlapping records as well as imposing certain requirements such as only including records that were observed during an individuals observation period. When adding variables based on concept sets we will be working directly with record-level data in the OMOP CDM clinical tables.

1.2 Adding variables from concept sets

For this vignette we’ll use the Eunomia synthetic dataset. First lets create our cohort of interest, individuals with an ankle sprain.

library(CDMConnector)
library(CodelistGenerator)
library(PatientProfiles)
library(dplyr)
library(ggplot2)

con <- DBI::dbConnect(duckdb::duckdb(),
                       dbdir = CDMConnector::eunomia_dir())
cdm <- CDMConnector::cdm_from_con(con,
                                   cdm_schem = "main",
                                   write_schema = "main")

cdm <- generateConceptCohortSet(
  cdm = cdm,
  name = "ankle_sprain",
  conceptSet = list("ankle_sprain" = 81151),
  end = "event_end_date",
  limit = "all",
  overwrite = TRUE
)

cdm$ankle_sprain
#> # Source:   table<main.ankle_sprain> [?? x 4]
#> # Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#>    cohort_definition_id subject_id cohort_start_date cohort_end_date
#>                   <int>      <int> <date>            <date>         
#>  1                    1        300 2004-02-05        2004-03-04     
#>  2                    1        549 1962-07-08        1962-07-29     
#>  3                    1        730 1959-05-03        1959-06-07     
#>  4                    1       1146 1971-11-20        1971-12-18     
#>  5                    1       2025 1954-09-11        1954-10-16     
#>  6                    1       2409 1989-07-05        1989-07-19     
#>  7                    1       2679 2012-02-22        2012-03-21     
#>  8                    1       2827 1999-06-24        1999-07-29     
#>  9                    1       3030 2001-01-17        2001-01-31     
#> 10                    1       3076 1993-05-23        1993-06-27     
#> # ℹ more rows

Now let’s say we’re interested in summarising use of acetaminophen among our ankle sprain cohort. We can start by identifying the relevant concepts.

acetaminophen_cs <- getDrugIngredientCodes(cdm = cdm, 
                        name = c("acetaminophen"))

acetaminophen_cs
#> $acetaminophen
#> [1]  1125315  1127078  1127433 40229134 40231925 40162522 19133768

Once we have our codes for acetaminophen we can create variables based on these. As with cohort intersections, PatientProfiles provides four types of functions for concept intersections.

First, we can add a binary flag variable indicating whether an individual had a record of acetaminophen on the day of their ankle sprain or up to 30 days afterwards.

cdm$ankle_sprain %>%
  addConceptIntersectFlag(conceptSet = acetaminophen_cs, 
                          indexDate = "cohort_start_date", 
                          window = c(0, 30)) %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id  <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id            <int> 549, 2409, 4480, 4773, 865, 2588, 387, 1285, 233…
#> $ cohort_start_date     <date> 1962-07-08, 1989-07-05, 1979-06-10, 1989-01-21,…
#> $ cohort_end_date       <date> 1962-07-29, 1989-07-19, 1979-07-01, 1989-02-11,…
#> $ acetaminophen_0_to_30 <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …

Second, we can count the number of records of acetaminophen in this same window for each individual.

cdm$ankle_sprain %>%
  addConceptIntersectCount(conceptSet = acetaminophen_cs, 
                          indexDate = "cohort_start_date", 
                          window = c(0, 30)) %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id  <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id            <int> 549, 2409, 4480, 4773, 865, 2588, 387, 1285, 233…
#> $ cohort_start_date     <date> 1962-07-08, 1989-07-05, 1979-06-10, 1989-01-21,…
#> $ cohort_end_date       <date> 1962-07-29, 1989-07-19, 1979-07-01, 1989-02-11,…
#> $ acetaminophen_0_to_30 <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …

Third, we could identify the first start date of acetaminophen in this window.

cdm$ankle_sprain %>%
  addConceptIntersectDate(conceptSet = acetaminophen_cs, 
                          indexDate = "cohort_start_date", 
                          window = c(0, 30), 
                          order = "first") %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id  <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id            <int> 549, 2409, 3410, 4480, 4773, 865, 2588, 387, 128…
#> $ cohort_start_date     <date> 1962-07-08, 1989-07-05, 1978-02-06, 1979-06-10,…
#> $ cohort_end_date       <date> 1962-07-29, 1989-07-19, 1978-03-06, 1979-07-01,…
#> $ acetaminophen_0_to_30 <date> 1962-07-08, 1989-07-05, 1978-02-06, 1979-06-10,…

Or fourth, we can get the number of days to the start date of acetaminophen in the window.

cdm$ankle_sprain %>%
  addConceptIntersectDays(conceptSet = acetaminophen_cs, 
                          indexDate = "cohort_start_date", 
                          window = c(0, 30), 
                          order = "first") %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id  <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id            <int> 549, 2409, 3410, 4480, 4773, 865, 2588, 387, 128…
#> $ cohort_start_date     <date> 1962-07-08, 1989-07-05, 1978-02-06, 1979-06-10,…
#> $ cohort_end_date       <date> 1962-07-29, 1989-07-19, 1978-03-06, 1979-07-01,…
#> $ acetaminophen_0_to_30 <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …

1.3 Adding multiple concept based variables

We can add more than one variable at a time when using these functions. For example, we might want to add variables for multiple time windows.

cdm$ankle_sprain %>%
  addConceptIntersectFlag(conceptSet = acetaminophen_cs, 
                          indexDate = "cohort_start_date", 
                          window = list(c(-Inf, -1),
                                        c(0, 0),
                                        c(1, Inf))) %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 7
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 549, 1146, 2409, 2679, 2827, 3030, 3076, 3728…
#> $ cohort_start_date        <date> 1962-07-08, 1971-11-20, 1989-07-05, 2012-02-…
#> $ cohort_end_date          <date> 1962-07-29, 1971-12-18, 1989-07-19, 2012-03-…
#> $ acetaminophen_minf_to_m1 <dbl> 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, …
#> $ acetaminophen_0_to_0     <dbl> 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, …
#> $ acetaminophen_1_to_inf   <dbl> 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, …

Or we might want to get variables for multiple drug ingredients of interest.

meds_cs <- getDrugIngredientCodes(cdm = cdm, 
                                  name = c("acetaminophen",
                                           "amoxicillin",
                                           "aspirin",
                                           "heparin",
                                           "morphine",
                                           "oxycodone",
                                           "warfarin"))

cdm$ankle_sprain %>%
  addConceptIntersectFlag(conceptSet = meds_cs, 
                          indexDate = "cohort_start_date", 
                          window = list(c(-Inf, -1),
                                        c(0, 0))) %>% 
  dplyr::glimpse()
#> Rows: ??
#> Columns: 18
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f0196815b2.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 549, 1146, 2409, 2679, 2827, 3030, 3076, 3728…
#> $ cohort_start_date        <date> 1962-07-08, 1971-11-20, 1989-07-05, 2012-02-…
#> $ cohort_end_date          <date> 1962-07-29, 1971-12-18, 1989-07-19, 2012-03-…
#> $ heparin_minf_to_m1       <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ aspirin_minf_to_m1       <dbl> 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, …
#> $ amoxicillin_minf_to_m1   <dbl> 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, …
#> $ oxycodone_minf_to_m1     <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, …
#> $ aspirin_0_to_0           <dbl> 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, …
#> $ amoxicillin_0_to_0       <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ morphine_minf_to_m1      <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ warfarin_minf_to_m1      <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ acetaminophen_minf_to_m1 <dbl> 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, …
#> $ acetaminophen_0_to_0     <dbl> 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, …
#> $ morphine_0_to_0          <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ oxycodone_0_to_0         <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ warfarin_0_to_0          <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ heparin_0_to_0           <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …

1.4 Cohort-based versus concept-based intersections

In the previous vignette we saw that we can add an intersection variable using a cohort we have created. Meanwhile in this vignette we see that we can instead create an intersection variable using a concept set directly. It is important to note that under some circumstances these two approaches can lead to different results.

When creating a cohort we combine overlapping records, as cohort entries cannot overlap. Thus when adding an intersection count, addCohortIntersectCount() will return a count of cohort entries in the window of interest while addConceptIntersectCount() will return a count of records withing the window. We can see the impact for acetaminophen for our example data below, where we have slightly more records than cohort entries.

acetaminophen_cs <- getDrugIngredientCodes(cdm = cdm, 
                                  name = c("acetaminophen"))

cdm <- generateConceptCohortSet(
  cdm = cdm,
  name = "acetaminophen",
  conceptSet = acetaminophen_cs,
  end = "event_end_date",
  limit = "all"
)

dplyr::bind_rows(
cdm$ankle_sprain |> 
  addCohortIntersectCount(targetCohortTable = "acetaminophen",
                         window = c(-Inf, Inf)) |> 
  dplyr::group_by(acetaminophen_minf_to_inf)  |> 
  dplyr::tally() |> 
  dplyr::collect() |> 
  dplyr::arrange(desc(acetaminophen_minf_to_inf)) |> 
  dplyr::mutate(type = "cohort"),
cdm$ankle_sprain |> 
  addConceptIntersectCount(conceptSet = acetaminophen_cs, 
                         window = c(-Inf, Inf)) |> 
  dplyr::group_by(acetaminophen_minf_to_inf) |> 
  dplyr::tally() |> 
  dplyr::collect() |> 
  dplyr::arrange(desc(acetaminophen_minf_to_inf)) |> 
  dplyr::mutate(type = "concept_set")) |> 
  ggplot() +
  geom_col(aes(acetaminophen_minf_to_inf, n, fill = type), 
           position = "dodge") +
  theme_bw()+
  theme(legend.title = element_blank(), 
        legend.position = "top")

Additional differences between cohort and concept set intersections may also result from cohort table rules. For example, cohort tables will typically omit any records that occur outside an individual´s observation time (as defined in the observation period window). Such records, however, would not be excluded when adding a concept based intersection.