Skip to contents

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.

#> 
#> Download completed!
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<ankle_sprain> [?? x 4]
#> # Database: DuckDB v0.10.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#>    cohort_definition_id subject_id cohort_start_date cohort_end_date
#>                   <int>      <int> <date>            <date>         
#>  1                    1        245 1996-07-21        1996-08-04     
#>  2                    1        263 1958-03-31        1958-04-14     
#>  3                    1        404 1962-06-04        1962-07-09     
#>  4                    1        778 1985-01-10        1985-01-31     
#>  5                    1        782 1949-12-14        1950-01-04     
#>  6                    1        895 1971-11-18        1971-12-02     
#>  7                    1        950 1985-05-26        1985-06-16     
#>  8                    1       1046 1988-06-13        1988-07-18     
#>  9                    1       1338 2007-11-30        2007-12-21     
#> 10                    1       1459 2006-10-26        2006-11-16     
#> # ℹ more rows

cdm$ankle_sprain %>%
  addTableIntersectFlag(
    tableName = "condition_occurrence",
    window = c(-30, -1)
  ) |> 
  tally()
#> # Source:   SQL [1 x 1]
#> # Database: DuckDB v0.10.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 5200, 4696, 2827, 5306, 1107, 3403, 97, 480, 1…
#> $ cohort_start_date       <date> 1960-08-20, 1955-01-22, 1984-04-08, 1990-08-2…
#> $ cohort_end_date         <date> 1960-09-03, 1955-02-05, 1984-05-13, 1990-09-2…
#> $ 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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 5200, 4696, 2827, 5306, 1107, 3403, 97, 480, 1…
#> $ cohort_start_date       <date> 1960-08-20, 1955-01-22, 1984-04-08, 1990-08-2…
#> $ cohort_end_date         <date> 1960-09-03, 1955-02-05, 1984-05-13, 1990-09-2…
#> $ 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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 1046, 3092, 4452, 5200, 859, 4696, 1709, 2292…
#> $ cohort_start_date        <date> 1988-06-13, 1956-05-22, 1958-08-16, 1960-08-…
#> $ cohort_end_date          <date> 1988-07-18, 1956-06-05, 1958-08-30, 1960-09-…
#> $ drug_exposure_m180_to_m1 <dbl> 1, 2, 1, 3, 1, 3, 1, 1, 4, 1, 1, 1, 1, 1, 2, …

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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 950, 3092, 4452, 5200, 859, 4696, 545, 1709, …
#> $ cohort_start_date        <date> 1985-05-26, 1956-05-22, 1958-08-16, 1960-08-…
#> $ cohort_end_date          <date> 1985-06-16, 1956-06-05, 1958-08-30, 1960-09-…
#> $ drug_exposure_m180_to_m1 <date> 1984-12-20, 1956-04-04, 1958-05-07, 1960-07-…


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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id               <int> 950, 3092, 4452, 5200, 859, 4696, 545, 1709, …
#> $ cohort_start_date        <date> 1985-05-26, 1956-05-22, 1958-08-16, 1960-08-…
#> $ cohort_end_date          <date> 1985-06-16, 1956-06-05, 1958-08-30, 1960-09-…
#> $ drug_exposure_m180_to_m1 <date> 1984-12-20, 1956-04-04, 1958-05-07, 1960-07-…

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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.duckdb]
#> $ cohort_definition_id              <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id                        <int> 245, 263, 895, 1046, 1338, 1641, 167…
#> $ cohort_start_date                 <date> 1996-07-21, 1958-03-31, 1971-11-18,…
#> $ cohort_end_date                   <date> 1996-08-04, 1958-04-14, 1971-12-02,…
#> $ 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.1 [unknown@Linux 6.5.0-1018-azure:R 4.4.0//tmp/RtmpsmcLWW/file23c66ac17631.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> 245, 263, 895, 1046, 1338, 1641, 1670, 1982, 2961…
#> $ cohort_start_date    <date> 1996-07-21, 1958-03-31, 1971-11-18, 1988-06-13, …
#> $ cohort_end_date      <date> 1996-08-04, 1958-04-14, 1971-12-02, 1988-07-18, …
#> $ proc_or_meas_0_to_0  <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…