View source: R/classConceptSetExpression.R
print.conceptSetExpression | R Documentation |
Print a concept set expression
## S3 method for class 'conceptSetExpression'
print(x, ...)
x |
A concept set expression |
... |
Included for compatibility with generic. Not used. |
Invisibly returns the input
asthma_cs <- list("asthma_narrow" = dplyr::tibble(
"concept_id" = 1,
"excluded" = FALSE,
"descendants" = TRUE,
"mapped" = FALSE
),
"asthma_broad" = dplyr::tibble(
"concept_id" = c(1,2),
"excluded" = FALSE,
"descendants" = TRUE,
"mapped" = FALSE
))
asthma_cs <- newConceptSetExpression(asthma_cs)
print(asthma_cs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.