plotRecordCount {OmopSketch} | R Documentation |
Create a ggplot of the records' count trend.
Description
Create a ggplot of the records' count trend.
Usage
plotRecordCount(result, facet = NULL, colour = NULL)
Arguments
result |
Output from summariseRecordCount(). |
facet |
Columns to face by. Formula format can be provided. See possible
columns to face by with: |
colour |
Columns to colour by. See possible columns to colour by with:
|
Value
A ggplot showing the table counts
Examples
cdm <- mockOmopSketch()
summarisedResult <- summariseRecordCount(
cdm = cdm,
omopTableName = "condition_occurrence",
ageGroup = list("<=20" = c(0,20), ">20" = c(21, Inf)),
sex = TRUE
)
plotRecordCount(summarisedResult, colour = "age_group", facet = sex ~ .)
PatientProfiles::mockDisconnect(cdm = cdm)
[Package OmopSketch version 0.2.0 Index]