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.
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.
#>
#> Download completed!
library(CDMConnector)
library(CodelistGenerator)
library(PatientProfiles)
library(dplyr)
#>
#> Attaching package: 'dplyr'
#> The following objects are masked from 'package:stats':
#>
#> filter, lag
#> The following objects are masked from 'package:base':
#>
#> intersect, setdiff, setequal, union
library(ggplot2)
con <- DBI::dbConnect(duckdb::duckdb(),
dbdir = CDMConnector::eunomia_dir()
)
#> Creating CDM database /tmp/RtmpFbaDyg/GiBleed_5.3.zip
cdm <- CDMConnector::cdm_from_con(con,
cdm_schem = "main",
write_schema = "main"
)
#> Note: method with signature 'DBIConnection#Id' chosen for function 'dbExistsTable',
#> target signature 'duckdb_connection#Id'.
#> "duckdb_connection#ANY" would also be valid
cdm <- generateConceptCohortSet(
cdm = cdm,
name = "ankle_sprain",
conceptSet = list("ankle_sprain" = 81151),
end = "event_end_date",
limit = "all",
overwrite = TRUE
)
#> Warning: ! 3 casted column in ankle_sprain (cohort_attrition) as do not match expected
#> column type:
#> • `reason_id` from numeric to integer
#> • `excluded_records` from numeric to integer
#> • `excluded_subjects` from numeric to integer
#> Warning: ! 1 casted column in ankle_sprain (cohort_codelist) as do not match expected
#> column type:
#> • `concept_id` from numeric to integer
cdm$ankle_sprain
#> # Source: table<main.ankle_sprain> [?? x 4]
#> # Database: DuckDB v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> cohort_definition_id subject_id cohort_start_date cohort_end_date
#> <int> <int> <date> <date>
#> 1 1 63 2000-10-15 2000-10-29
#> 2 1 145 1955-06-27 1955-08-01
#> 3 1 450 1983-08-14 1983-09-11
#> 4 1 711 1983-06-09 1983-07-07
#> 5 1 742 1975-05-19 1975-06-09
#> 6 1 905 1979-02-26 1979-03-12
#> 7 1 947 1968-07-21 1968-08-04
#> 8 1 1098 2016-11-06 2016-11-27
#> 9 1 1143 1980-11-20 1980-12-11
#> 10 1 1250 1981-03-26 1981-04-30
#> # ℹ 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
#>
#> ── 1 codelist ──────────────────────────────────────────────────────────────────
#>
#> - 161_acetaminophen (7 codes)
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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 63, 145, 450, 711, 905, 1335, 1568, 1965, …
#> $ cohort_start_date <date> 2000-10-15, 1955-06-27, 1983-08-14, 1983-…
#> $ cohort_end_date <date> 2000-10-29, 1955-08-01, 1983-09-11, 1983-…
#> $ `161_acetaminophen_0_to_30` <dbl> 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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 63, 145, 450, 711, 905, 1335, 1568, 1965, …
#> $ cohort_start_date <date> 2000-10-15, 1955-06-27, 1983-08-14, 1983-…
#> $ cohort_end_date <date> 2000-10-29, 1955-08-01, 1983-09-11, 1983-…
#> $ `161_acetaminophen_0_to_30` <dbl> 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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 63, 145, 711, 905, 1335, 1568, 1965, 3397,…
#> $ cohort_start_date <date> 2000-10-15, 1955-06-27, 1983-06-09, 1979-…
#> $ cohort_end_date <date> 2000-10-29, 1955-08-01, 1983-07-07, 1979-…
#> $ `161_acetaminophen_0_to_30` <date> 2000-10-15, 1955-06-27, 1983-06-09, 1979-…
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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 63, 145, 711, 905, 1335, 1568, 1965, 3397,…
#> $ cohort_start_date <date> 2000-10-15, 1955-06-27, 1983-06-09, 1979-…
#> $ cohort_end_date <date> 2000-10-29, 1955-08-01, 1983-07-07, 1979-…
#> $ `161_acetaminophen_0_to_30` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 63, 145, 450, 711, 905, 947, 1098, 1250…
#> $ cohort_start_date <date> 2000-10-15, 1955-06-27, 1983-08-14, 19…
#> $ cohort_end_date <date> 2000-10-29, 1955-08-01, 1983-09-11, 19…
#> $ `161_acetaminophen_minf_to_m1` <dbl> 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, …
#> $ `161_acetaminophen_0_to_0` <dbl> 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, …
#> $ `161_acetaminophen_1_to_inf` <dbl> 1, 1, 1, 1, 1, 1, 0, 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 v1.1.1 [unknown@Linux 6.5.0-1025-azure:R 4.4.1//tmp/RtmpFbaDyg/file1b3747bbfb71.duckdb]
#> $ cohort_definition_id <int> 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ subject_id <int> 871, 806, 1097, 5051, 1918, 403, 1632, …
#> $ cohort_start_date <date> 2002-10-20, 1962-07-02, 2012-02-24, 19…
#> $ cohort_end_date <date> 2002-11-03, 1962-07-30, 2012-03-09, 19…
#> $ `7804_oxycodone_minf_to_m1` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `161_acetaminophen_minf_to_m1` <dbl> 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, …
#> $ `1191_aspirin_minf_to_m1` <dbl> 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, …
#> $ `723_amoxicillin_minf_to_m1` <dbl> 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, …
#> $ `11289_warfarin_minf_to_m1` <dbl> 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, …
#> $ `1191_aspirin_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, …
#> $ `161_acetaminophen_0_to_0` <dbl> 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, …
#> $ `723_amoxicillin_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `5224_heparin_minf_to_m1` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `7052_morphine_minf_to_m1` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `11289_warfarin_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `5224_heparin_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `7052_morphine_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
#> $ `7804_oxycodone_0_to_0` <dbl> 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, …
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"
)
#> Warning: ! 3 casted column in acetaminophen (cohort_attrition) as do not match expected
#> column type:
#> • `reason_id` from numeric to integer
#> • `excluded_records` from numeric to integer
#> • `excluded_subjects` from numeric to integer
dplyr::bind_rows(
cdm$ankle_sprain |>
addCohortIntersectCount(
targetCohortTable = "acetaminophen",
window = c(-Inf, Inf)
) |>
dplyr::group_by(`161_acetaminophen_minf_to_inf`) |>
dplyr::tally() |>
dplyr::collect() |>
dplyr::arrange(desc(`161_acetaminophen_minf_to_inf`)) |>
dplyr::mutate(type = "cohort"),
cdm$ankle_sprain |>
addConceptIntersectCount(
conceptSet = acetaminophen_cs,
window = c(-Inf, Inf)
) |>
dplyr::group_by(`161_acetaminophen_minf_to_inf`) |>
dplyr::tally() |>
dplyr::collect() |>
dplyr::arrange(desc(`161_acetaminophen_minf_to_inf`)) |>
dplyr::mutate(type = "concept_set")
) |>
ggplot() +
geom_col(aes(`161_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.