print.concept_set_expression: Print a concept set expression

View source: R/classConceptSetExpression.R

print.concept_set_expressionR Documentation

Print a concept set expression

Description

Print a concept set expression

Usage

## S3 method for class 'concept_set_expression'
print(x, ...)

Arguments

x

A ⁠<concept_set_expression>⁠ object.

...

For compatibility; not used.

Value

Invisibly returns the input

Examples

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)

omopgenerics documentation built on June 17, 2026, 5:07 p.m.