Skip to contents

Download concept set from the concept set library

Usage

downloadConceptSet(conceptSetName = availableConceptSets())

Arguments

conceptSetName

Character vector to point to concept names, multiple names can be provided. You can also use tags to refere to multiple concept sets that are part of the same tag, start with

Value

A conceptSetExpression with the required concepts

Examples

# \donttest{
library(OmopConcepts)

downloadConceptSet(c("heart_failure", "arthritis"))
#> 
#> ── 2 concept set expressions ───────────────────────────────────────────────────
#> 
#> - arthritis (1 concept criteria)
#> - heart_failure (1 concept criteria)

downloadConceptSet("@table1")
#> 
#> ── 2 concept set expressions ───────────────────────────────────────────────────
#> 
#> - arthritis (1 concept criteria)
#> - heart_failure (1 concept criteria)

# }