View source: R/plotComparedLargeScaleCharacteristics.R
plotComparedLargeScaleCharacteristics | R Documentation |
plotComparedLargeScaleCharacteristics(
result,
reference,
missings = 0,
facet = NULL,
colour = NULL
)
result |
A summarised_result object. Output of summariseLargeScaleCharacteristics(). |
reference |
A named character to set up the reference. |
missings |
Value to replace the missing value with. If NULL missing values will be eliminated. |
facet |
Columns to facet by. See options with |
colour |
Columns to color by. See options with |
A ggplot.
## Not run:
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(
reference = c(variable_level = "-365 to -1"),
colour = "variable_name",
missings = NULL
) |>
ggplotly()
cdmDisconnect(cdm)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.