So far we’ve seen that we can add variables indicating intersections based on cohorts or concept sets. One additional option we have is to simply add an intersection based on a table.

Let’s again create a cohort containing people 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\file39f07cfc6e9.duckdb]
#>    cohort_definition_id subject_id cohort_start_date cohort_end_date
#>                   <int>      <int> <date>            <date>         
#>  1                    1        340 2007-10-29        2007-11-26     
#>  2                    1        580 2011-08-05        2011-08-19     
#>  3                    1        775 1948-03-28        1948-04-25     
#>  4                    1       1418 1973-09-22        1973-10-13     
#>  5                    1       1516 1968-10-18        1968-11-08     
#>  6                    1       1634 1971-02-18        1971-03-11     
#>  7                    1       2326 1990-09-16        1990-10-07     
#>  8                    1       2498 1982-12-23        1983-01-06     
#>  9                    1       2933 1958-08-29        1958-09-26     
#> 10                    1       3000 2010-04-20        2010-05-25     
#> # ℹ more rows

cdm$ankle_sprain %>%
  addTableIntersectFlag(
    tableName = "condition_occurrence",
    window = c(-30, -1)
  ) |> 
  tally()
#> # Source:   SQL [1 x 1]
#> # Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#>       n
#>   <dbl>
#> 1  1915

We can use table intersection functions to check whether someone had a record in the drug exposure table in the 30 days before their ankle sprain. If we set targetStartDate to “drug_exposure_start_date” and targetEndDate to “drug_exposure_end_date” we are checking whether an individual had an ongoing drug exposure record in the window.

cdm$ankle_sprain |> 
  addTableIntersectFlag(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date", 
    targetStartDate = "drug_exposure_start_date",
    targetEndDate = "drug_exposure_end_date",
    window = c(-30, -1)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 3047, 1335, 1568, 2843, 3820, 2651, 5022, 1992…
#> $ cohort_start_date       <date> 1989-04-28, 1998-05-28, 2017-12-07, 2001-07-0…
#> $ cohort_end_date         <date> 1989-05-26, 1998-06-18, 2017-12-28, 2001-08-0…
#> $ drug_exposure_m30_to_m1 <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…

Meanwhile if we set we set targetStartDate to “drug_exposure_start_date” and targetEndDate to “drug_exposure_start_date” we will instead be checking whether they had a drug exposure record that started during the window.

cdm$ankle_sprain |> 
  addTableIntersectFlag(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date",
    window = c(-30, -1)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 3047, 1335, 1568, 2843, 3820, 2651, 5022, 1992…
#> $ cohort_start_date       <date> 1989-04-28, 1998-05-28, 2017-12-07, 2001-07-0…
#> $ cohort_end_date         <date> 1989-05-26, 1998-06-18, 2017-12-28, 2001-08-0…
#> $ drug_exposure_m30_to_m1 <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…

As before, instead of a flag, we could also add count, date, or days variables.

cdm$ankle_sprain |> 
  addTableIntersectCount(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date", 
    window = c(-180, -1)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 408, 3047, 3701, 1211, 3330, 2147, 1079, 3263…
#> $ cohort_start_date        <date> 2013-01-05, 1989-04-28, 1986-09-16, 1966-12-…
#> $ cohort_end_date          <date> 2013-02-02, 1989-05-26, 1986-10-14, 1966-12-…
#> $ drug_exposure_m180_to_m1 <dbl> 2, 1, 1, 2, 2, 1, 2, 2, 1, 1, 1, 1, 2, 1, 1, …

cdm$ankle_sprain |> 
  addTableIntersectDate(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date", 
    order = "last",
    window = c(-180, -1)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 4121, 408, 3701, 1211, 2846, 3330, 2147, 1079…
#> $ cohort_start_date        <date> 1925-11-18, 2013-01-05, 1986-09-16, 1966-12-…
#> $ cohort_end_date          <date> 1925-12-09, 2013-02-02, 1986-10-14, 1966-12-…
#> $ drug_exposure_m180_to_m1 <date> 1925-09-28, 2012-08-01, 1986-03-26, 1966-10-…


cdm$ankle_sprain |> 
  addTableIntersectDate(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date", 
    order = "last",
    window = c(-180, -1)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 4121, 408, 3701, 1211, 2846, 3330, 2147, 1079…
#> $ cohort_start_date        <date> 1925-11-18, 2013-01-05, 1986-09-16, 1966-12-…
#> $ cohort_end_date          <date> 1925-12-09, 2013-02-02, 1986-10-14, 1966-12-…
#> $ drug_exposure_m180_to_m1 <date> 1925-09-28, 2012-08-01, 1986-03-26, 1966-10-…

In these examples we’ve been adding intersections using the entire drug exposure concept table. However, we could have subsetted it before adding our table intersection. For example, let’s say we want to add a variable for acetaminophen use among our ankle sprain cohort. As we’ve seen before we could use a cohort or concept set for this, but now we have another option - subset the drug exposure table down to acetaminophen records and add a table intersection.

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

cdm$acetaminophen_records <- cdm$drug_exposure |> 
  filter(drug_concept_id %in% !!acetaminophen_cs[[1]]) |> 
  compute()

cdm$ankle_sprain |> 
  addTableIntersectFlag(
    tableName = "acetaminophen_records",
    indexDate = "cohort_start_date", 
    targetStartDate = "drug_exposure_start_date",
    targetEndDate = "drug_exposure_end_date",
    window = c(-Inf, Inf)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id              <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id                        <int> 340, 580, 775, 1516, 1634, 2326, 249…
#> $ cohort_start_date                 <date> 2007-10-29, 2011-08-05, 1948-03-28,…
#> $ cohort_end_date                   <date> 2007-11-26, 2011-08-19, 1948-04-25,…
#> $ acetaminophen_records_minf_to_inf <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …

Beyond this table intersection provides a means if implementing a wide range of custom analyses. One more example to show this is provided below, where we check whether individuals have a measurement or procedure record on the date of their ankle sprain.

cdm$proc_or_meas <- union_all(cdm$procedure_occurrence |> 
  select("person_id", 
         "record_date" = "procedure_date"),
cdm$measurement |> 
  select("person_id", 
         "record_date" = "measurement_date")) |> 
  compute()

cdm$ankle_sprain |> 
  addTableIntersectFlag(
    tableName = "proc_or_meas",
    indexDate = "cohort_start_date", 
    targetStartDate = "record_date",
    targetEndDate = "record_date",
    window = c(0, 0)
  ) |> 
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB v0.10.0 [martics@Windows 10 x64:R 4.2.3/C:\Users\martics\AppData\Local\Temp\RtmpqULHVu\file39f07cfc6e9.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id           <int> 340, 580, 775, 1516, 1634, 2326, 2498, 3221, 3887…
#> $ cohort_start_date    <date> 2007-10-29, 2011-08-05, 1948-03-28, 1968-10-18, …
#> $ cohort_end_date      <date> 2007-11-26, 2011-08-19, 1948-04-25, 1968-11-08, …
#> $ proc_or_meas_0_to_0  <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…