
Subset a codelist to only those codes from a particular domain.
Source:R/subsetOnDomain.R
subsetOnDomain.RdSubset a codelist to only those codes from a particular domain.
Arguments
- x
A codelist, codelist_with_details, or a concept_set. See
newCodelist(),newCodelistWithDetails(),newConceptSetExpression()functions for more details.- cdm
A cdm reference to an OMOP CDM dataset. If data is held within a database, the vocabulary tables should be in the same schema as the clinical tables (person, observation period, and so on).
- domain
Character vector with one or more of the OMOP CDM domains. The results will be restricted to the given domains. Check the available domains in the database by running 'availableDomains()', or 'associatedDomains()' to explore the domains associated with a codelist. If NULL, all supported domains are included: Condition, Drug, Procedure, Device, Observation, and Measurement.
- negate
If FALSE, only concepts with the domain specified will be returned. If TRUE, concepts with the domain specified will be excluded.
Value
The codelist with only those concepts associated with the domain (if negate = FALSE) or the codelist without those concepts associated with the domain (if negate = TRUE).
Examples
# \donttest{
library(CodelistGenerator)
library(omopgenerics)
cdm <- mockVocabRef()
codes <- subsetOnDomain(
x = newCodelist(list("codes" = c(10,13,15))),
cdm = cdm,
domain = "Drug")
#> Warning: ! `codelist` cast to integers.
codes
#>
#> ── 1 codelist ──────────────────────────────────────────────────────────────────
#>
#> - codes (2 codes)
# }