Summarise attrition associated with cohorts in a cohort table
Source:R/summariseCohortAttrition.R
summariseCohortAttrition.Rd
Summarise attrition associated with cohorts in a cohort table
Examples
# \donttest{
library(CohortCharacteristics)
library(dplyr, warn.conflicts = FALSE)
cdm <- mockCohortCharacteristics()
summariseCohortAttrition(cohort = cdm$cohort1) |>
glimpse()
#> Rows: 12
#> Columns: 13
#> $ result_id <int> 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3
#> $ cdm_name <chr> "PP_MOCK", "PP_MOCK", "PP_MOCK", "PP_MOCK", "PP_MOCK"…
#> $ group_name <chr> "cohort_name", "cohort_name", "cohort_name", "cohort_…
#> $ group_level <chr> "cohort_1", "cohort_1", "cohort_1", "cohort_1", "coho…
#> $ strata_name <chr> "reason", "reason", "reason", "reason", "reason", "re…
#> $ strata_level <chr> "Initial qualifying events", "Initial qualifying even…
#> $ variable_name <chr> "number_records", "number_subjects", "excluded_record…
#> $ variable_level <chr> NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA
#> $ estimate_name <chr> "count", "count", "count", "count", "count", "count",…
#> $ estimate_type <chr> "integer", "integer", "integer", "integer", "integer"…
#> $ estimate_value <chr> "4", "4", "0", "0", "1", "1", "0", "0", "5", "5", "0"…
#> $ additional_name <chr> "reason_id", "reason_id", "reason_id", "reason_id", "…
#> $ additional_level <chr> "1", "1", "1", "1", "1", "1", "1", "1", "1", "1", "1"…
mockDisconnect(cdm)
# }