
It creates column to indicate the days of difference from an index date to a concept
Source:R/addConceptIntersect.R
addConceptIntersectDays.Rd
It creates column to indicate the days of difference from an index date to a concept
Arguments
- x
Table with individuals in the cdm.
- conceptSet
Concept set list.
- indexDate
Variable in x that contains the date to compute the intersection.
- censorDate
whether to censor overlap events at a date column of x
- window
window to consider events in.
- targetDate
Event date to use for the intersection.
- order
last or first date to use for date/days calculations.
- inObservation
If TRUE only records inside an observation period will be considered.
- nameStyle
naming of the added column or columns, should include required parameters.
- name
Name of the new table, if NULL a temporary table is returned.
Examples
# \donttest{
library(PatientProfiles)
cdm <- mockPatientProfiles()
concept <- dplyr::tibble(
concept_id = c(1125315),
domain_id = "Drug",
vocabulary_id = NA_character_,
concept_class_id = "Ingredient",
standard_concept = "S",
concept_code = NA_character_,
valid_start_date = as.Date("1900-01-01"),
valid_end_date = as.Date("2099-01-01"),
invalid_reason = NA_character_
) |>
dplyr::mutate(concept_name = paste0("concept: ", .data$concept_id))
cdm <- CDMConnector::insertTable(cdm, "concept", concept)
cdm$cohort1 |>
addConceptIntersectDays(conceptSet = list("acetaminophen" = 1125315))
#> Warning: ! `codelist` casted to integers.
#> # Source: table<og_062_1740755688> [?? x 5]
#> # Database: DuckDB v1.2.0 [unknown@Linux 6.8.0-1021-azure:R 4.4.2/:memory:]
#> cohort_definition_id subject_id cohort_start_date cohort_end_date
#> <int> <int> <date> <date>
#> 1 2 2 1919-11-17 1920-08-15
#> 2 3 3 1922-08-03 1943-11-13
#> 3 1 8 1907-02-26 1909-04-16
#> 4 3 5 1984-06-16 1987-03-18
#> 5 2 9 1942-09-02 1947-04-22
#> 6 1 6 1925-09-05 1927-01-15
#> 7 3 1 1961-12-23 1982-07-06
#> 8 3 4 1991-10-18 2003-03-26
#> 9 1 10 1943-12-27 1945-08-15
#> 10 3 7 1966-01-23 1969-06-03
#> # ℹ 1 more variable: acetaminophen_0_to_inf <int>
mockDisconnect(cdm = cdm)
# }