summariseIndication {DrugUtilisation} | R Documentation |
Summarise the indications of individuals in a drug cohort
Description
Summarise the observed indications of patients in a drug cohort based on their presence in an indication cohort in a specified time window. If an individual is not in one of the indication cohorts, they will be considered to have an unknown indication if they are present in one of the specified OMOP CDM clinical tables. Otherwise, if they are neither in an indication cohort or a clinical table they will be considered as having no observed indication.
Usage
summariseIndication(
cohort,
strata = list(),
indicationCohortName,
indicationCohortId = NULL,
indicationWindow = list(c(0, 0)),
unknownIndicationTable = NULL,
indexDate = "cohort_start_date",
censorDate = NULL
)
Arguments
cohort |
A cohort table in a cdm reference. |
strata |
List of variables to stratify results by. These variables must be present in the cohort table. |
indicationCohortName |
Name of the cohort table with potential indications. |
indicationCohortId |
The target cohort ID to add indication. If NULL all cohorts will be considered. |
indicationWindow |
The time window over which to identify indications. |
unknownIndicationTable |
Tables in the OMOP CDM to search for unknown indications. |
indexDate |
A date variable in the cohort table for which indications will be found relative to. |
censorDate |
After that day no indication will be considered. |
Value
A summarised result
Examples
library(DrugUtilisation)
library(CDMConnector)
library(dplyr)
cdm <- mockDrugUtilisation()
indications <- list("headache" = 378253, "asthma" = 317009)
cdm <- generateConceptCohortSet(cdm, indications, "indication_cohorts")
cdm <- generateIngredientCohortSet(
cdm = cdm, name = "drug_cohort",
ingredient = "acetaminophen"
)
cdm$drug_cohort |>
summariseIndication(
indicationCohortName = "indication_cohorts",
unknownIndicationTable = "condition_occurrence",
indicationWindow = list(c(-Inf, 0))
) |>
glimpse()