To add a new column with the number of eras. To add multiple columns use addDrugUtilisation()
for efficiency.
Source: R/addDrugUtilisation.R
addNumberEras.Rd
To add a new column with the number of eras. To add multiple columns use
addDrugUtilisation()
for efficiency.
Usage
addNumberEras(
cohort,
conceptSet,
gapEra,
indexDate = "cohort_start_date",
censorDate = "cohort_end_date",
restrictIncident = TRUE,
nameStyle = "number_eras_{concept_name}",
name = NULL
)
Arguments
- cohort
A cohort_table object.
- conceptSet
List of concepts to be included.
- gapEra
Number of days between two continuous exposures to be considered in the same era.
- indexDate
Name of a column that indicates the date to start the analysis.
- censorDate
Name of a column that indicates the date to stop the analysis, if NULL end of individuals observation is used.
- restrictIncident
Whether to include only incident prescriptions in the analysis. If FALSE all prescriptions that overlap with the study period will be included.
- nameStyle
Character string to specify the nameStyle of the new columns.
- name
Name of the new computed cohort table, if NULL a temporary table will be created.
Examples
# \donttest{
library(DrugUtilisation)
cdm <- mockDrugUtilisation()
codelist <- CodelistGenerator::getDrugIngredientCodes(
cdm,
name = "acetaminophen"
)
cdm <- generateDrugUtilisationCohortSet(
cdm = cdm, name = "dus_cohort", conceptSet = codelist
)
#> ℹ Subsetting drug_exposure table
#> ℹ Checking whether any record needs to be dropped.
#> ℹ Collapsing overlaping records.
#> ℹ Collapsing records with gapEra = 1 days.
cdm$dus_cohort |>
addNumberEras(conceptSet = codelist, gapEra = 1)
#> # Source: table<og_133_1734614301> [?? x 5]
#> # Database: DuckDB v1.1.3 [unknown@Linux 6.8.0-1017-azure:R 4.4.2/:memory:]
#> cohort_definition_id subject_id cohort_start_date cohort_end_date
#> <int> <int> <date> <date>
#> 1 1 5 2021-04-17 2021-09-22
#> 2 1 6 2014-06-17 2014-06-18
#> 3 1 1 1992-08-30 2000-04-23
#> 4 1 6 2014-06-10 2014-06-10
#> 5 1 7 2005-10-04 2012-12-14
#> 6 1 3 1965-08-24 1966-03-08
#> 7 1 4 2014-04-11 2016-01-11
#> # ℹ 1 more variable: number_eras_161_acetaminophen <int>
# }