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.

library(CodelistGenerator)
library(PatientProfiles)
library(dplyr)
library(CohortConstructor)
library(ggplot2)
library(omock)

cdm <- mockCdmFromDataset(datasetName = "GiBleed", source = "duckdb")

cdm$ankle_sprain <- conceptCohort(
  cdm = cdm,
  name = "ankle_sprain",
  conceptSet = list("ankle_sprain" = 81151)
)
cdm$ankle_sprain
#> # Source:   table<results.test_ankle_sprain> [?? x 4]
#> # Database: DuckDB 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#>    cohort_definition_id subject_id cohort_start_date cohort_end_date
#>                   <int>      <int> <date>            <date>         
#>  1                    1       1138 1984-02-09        1984-03-15     
#>  2                    1       1357 2000-05-19        2000-06-09     
#>  3                    1       2309 1977-01-08        1977-01-22     
#>  4                    1       3060 2002-09-13        2002-09-27     
#>  5                    1       3942 2004-09-05        2004-10-10     
#>  6                    1       4678 2017-12-01        2017-12-22     
#>  7                    1       5117 2017-12-09        2017-12-30     
#>  8                    1       1496 1949-07-11        1949-08-15     
#>  9                    1       2094 1966-08-11        1966-08-25     
#> 10                    1       2267 1980-02-28        1980-04-03     
#> # ℹ more rows

cdm$ankle_sprain |>
  addTableIntersectFlag(
    tableName = "condition_occurrence",
    window = c(-30, -1)
  ) |>
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id           <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
#> $ subject_id                     <int> 3490, 1448, 5328, 1098, 3601, 4781, 261…
#> $ cohort_start_date              <date> 1954-11-24, 1978-01-01, 1914-05-06, 19…
#> $ cohort_end_date                <date> 1954-12-29, 1978-01-15, 1914-06-03, 19…
#> $ condition_occurrence_m30_to_m1 <dbl> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 

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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 1448, 4942, 3064, 1992, 404, 5165, 3869, 564, 
#> $ cohort_start_date       <date> 1978-01-01, 1998-04-16, 1997-01-30, 1992-10-1…
#> $ cohort_end_date         <date> 1978-01-15, 1998-05-21, 1997-03-06, 1992-11-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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id    <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1…
#> $ subject_id              <int> 1448, 4942, 3064, 1992, 404, 5165, 3869, 564, 
#> $ cohort_start_date       <date> 1978-01-01, 1998-04-16, 1997-01-30, 1992-10-1…
#> $ cohort_end_date         <date> 1978-01-15, 1998-05-21, 1997-03-06, 1992-11-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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
#> $ subject_id               <int> 1138, 1593, 1448, 4942, 1098, 2292, 1079, 306…
#> $ cohort_start_date        <date> 1984-02-09, 1945-03-17, 1978-01-01, 1998-04-…
#> $ cohort_end_date          <date> 1984-03-15, 1945-04-14, 1978-01-15, 1998-05-…
#> $ drug_exposure_m180_to_m1 <dbl> 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 3, 3, 1, 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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
#> $ subject_id               <int> 1138, 1593, 1448, 1098, 2292, 1079, 3064, 185…
#> $ cohort_start_date        <date> 1984-02-09, 1945-03-17, 1978-01-01, 1961-09-…
#> $ cohort_end_date          <date> 1984-03-15, 1945-04-14, 1978-01-15, 1961-09-…
#> $ drug_exposure_m180_to_m1 <date> 1984-01-05, 1944-10-03, 1977-11-23, 1961-03-…


cdm$ankle_sprain |>
  addTableIntersectDate(
    tableName = "drug_exposure",
    indexDate = "cohort_start_date",
    order = "last",
    window = c(-180, -1)
  ) |>
  glimpse()
#> Rows: ??
#> Columns: 5
#> Database: DuckDB 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id     <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
#> $ subject_id               <int> 1138, 1593, 1448, 1098, 2292, 1079, 3064, 185…
#> $ cohort_start_date        <date> 1984-02-09, 1945-03-17, 1978-01-01, 1961-09-…
#> $ cohort_end_date          <date> 1984-03-15, 1945-04-14, 1978-01-15, 1961-09-…
#> $ drug_exposure_m180_to_m1 <date> 1984-01-05, 1944-10-03, 1977-11-23, 1961-03-…

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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.duckdb]
#> $ cohort_definition_id              <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 
#> $ subject_id                        <int> 1138, 1357, 2309, 3060, 3942, 4678, 
#> $ cohort_start_date                 <date> 1984-02-09, 2000-05-19, 1977-01-08,
#> $ cohort_end_date                   <date> 1984-03-15, 2000-06-09, 1977-01-22,
#> $ 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 1.4.0 [unknown@Linux 6.11.0-1018-azure:R 4.5.1//tmp/RtmpwWeKSR/file246b5ad8e622.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> 1138, 1357, 2309, 3060, 3942, 4678, 5117, 1496, 2…
#> $ cohort_start_date    <date> 1984-02-09, 2000-05-19, 1977-01-08, 2002-09-13, 
#> $ cohort_end_date      <date> 1984-03-15, 2000-06-09, 1977-01-22, 2002-09-27, 
#> $ proc_or_meas_0_to_0  <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0…