R/interface.R
cohort.Rd
Get a vector of integers that reflect the cohorts to which the evaluated patients belong.
cohort(x, ...)
Object of type selector.
selector
Extra args are passed onwards.
an integer vector
skeleton <- c(0.05, 0.1, 0.25, 0.4, 0.6) target <- 0.25 model <- get_dfcrm(skeleton = skeleton, target = target) fit <- model %>% fit('1NNN 2NTN') fit %>% cohort() #> [1] 1 1 1 2 2 2