
create a ggplot from the output of summariseLargeScaleCharacteristics.
Source:R/plotComparedLargeScaleCharacteristics.R
plotComparedLargeScaleCharacteristics.Rd
Usage
plotComparedLargeScaleCharacteristics(
result,
colour,
reference = NULL,
facet = NULL,
missings = 0
)
Arguments
- result
A summarised_result object.
- colour
Columns to color by. See options with
availablePlotColumns(result)
.- reference
A named character to set up the reference. It must be one of the levels of reference.
- facet
Columns to facet by. See options with
availablePlotColumns(result)
. Formula is also allowed to specify rows and columns.- missings
Value to replace the missing value with. If NULL missing values will be eliminated.
Examples
if (FALSE) { # \dontrun{
library(CohortCharacteristics)
library(duckdb)
library(CDMConnector)
library(DrugUtilisation)
library(plotly, warn.conflicts = FALSE)
con <- dbConnect(duckdb(), eunomiaDir())
cdm <- cdmFromCon(con, cdmSchem = "main", writeSchema = "main")
cdm <- generateIngredientCohortSet(
cdm = cdm, name = "my_cohort", ingredient = "acetaminophen"
)
resultsLsc <- cdm$my_cohort |>
summariseLargeScaleCharacteristics(
window = list(c(-365, -1), c(1, 365)),
eventInWindow = "condition_occurrence"
)
resultsLsc |>
plotComparedLargeScaleCharacteristics(
colour = "variable_level",
reference = "-365 to -1",
missings = NULL
) |>
ggplotly()
cdmDisconnect(cdm)
} # }