Skip to contents

CohortCodelist module that shows characteristics results (table) from the CohortCharacteristics package.

Super class

ShinyModule -> CohortCodelist

Active bindings

result

(summarised_result) Result object from CohortCharacteristics::summariseCodelist().

Methods

Inherited methods


CohortCodelist$new()

Initializer method

Usage

CohortCodelist$new(result, ...)

Arguments

result

(summarised_result) Result object from CohortCharacteristics::summariseCodelist().

...

Additional parameters to set fields from the ShinyModule parent.

Returns

self


CohortCodelist$clone()

The objects of this class are cloneable with this method.

Usage

CohortCodelist$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

{
# \donttest{
if (interactive()) {
  library(DarwinShinyModules)

  result <- CohortCharacteristics::summariseCohortCodelist(cdm$my_cohort)

  mod <- CohortCodelist$new(result)

  preview(mod)
}
# }
}