filterStrata | R Documentation |
Filter the strata_name-strata_level pair in a summarised_result
filterStrata(result, ...)
result |
A |
... |
Expressions that return a logical value ( |
A <summarised_result>
object with only the rows that fulfill the
required specified strata.
library(dplyr)
library(omopgenerics)
x <- tibble(
"result_id" = 1L,
"cdm_name" = "eunomia",
"group_name" = "cohort_name",
"group_level" = "my_cohort",
"strata_name" = c("sex", "sex &&& age_group", "sex &&& year"),
"strata_level" = c("Female", "Male &&& <40", "Female &&& 2010"),
"variable_name" = "number subjects",
"variable_level" = NA_character_,
"estimate_name" = "count",
"estimate_type" = "integer",
"estimate_value" = c("100", "44", "14"),
"additional_name" = "overall",
"additional_level" = "overall"
) |>
newSummarisedResult()
x |>
filterStrata(sex == "Female")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.