base_methods_crr | R Documentation |
Functions for tidycrr objects
## S3 method for class 'tidycrr'
coef(object, ...)
## S3 method for class 'tidycrr'
vcov(object, ...)
## S3 method for class 'tidycrr'
model.matrix(object, ...)
## S3 method for class 'tidycrr'
model.frame(formula, ...)
## S3 method for class 'tidycrr'
terms(x, ...)
... |
not used |
formula |
a formula |
x , object |
a tidycrr object |
coef vector, model matrix, model frame, terms object
mod <- crr(Surv(ttdeath, death_cr) ~ age + grade, trial)
coef(mod)
model.matrix(mod) %>% head()
model.frame(mod) %>% head()
terms(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.