Format a summarise_characteristics object into a visual table.
Source:R/tableCohortCount.R
tableCohortCount.Rd
Usage
tableCohortCount(
result,
type = "gt",
header = "cohort_name",
groupColumn = NULL,
hide = "variable_level"
)
Arguments
- result
A summarise_characteristics object.
- type
Type of table. Check supported types with
visOmopResults::tableType()
.- header
Columns to use as header. See options with
tidyColumns(result)
.- groupColumn
Columns to group by. See options with
tidyColumns(result)
.- hide
Columns to hide from the visualisation. See options with
tidyColumns(result)
.
Examples
# \donttest{
library(CohortCharacteristics)
cdm <- mockCohortCharacteristics()
result <- summariseCohortCount(cdm$cohort1)
#> ℹ summarising data
#> ✔ summariseCharacteristics finished!
tableCohortCount(result)
#> ! Results have not been suppressed.
mockDisconnect(cdm = cdm)
# }