coef.mixturecure | R Documentation |
coef.mixturecure
is a generic function which extracts the model
coefficients from a fitted mixturecure
model object fit using
curegmifs
, cureem
, cv_curegmifs
, or cv_cureem
.
## S3 method for class 'mixturecure'
coef(object, model_select = "AIC", ...)
object |
a |
model_select |
either a case-sensitive parameter for models fit using
This option has no effect for objects fit using |
... |
other arguments. |
rate |
estimated rate parameter when fitting a Weibull or exponential mixture cure model. |
shape |
estimated shape parameter when fitting a Weibull mixture cure model. |
b0 |
estimated intercept for the incidence portion of the mixture cure model. |
beta_inc |
the vector of coefficient estimates for the incidence portion of the mixture cure model. |
beta_lat |
the vector of coefficient estimates for the latency portion of the mixture cure model. |
p_uncured |
a vector of probabilities from the incidence portion of the fitted model representing the P(uncured). |
curegmifs
, cureem
,
summary.mixturecure
, plot.mixturecure
,
predict.mixturecure
library(survival)
withr::local_seed(1234)
temp <- generate_cure_data(n = 100, j = 10, n_true = 10, a = 1.8)
training <- temp$training
fit <- curegmifs(Surv(Time, Censor) ~ .,
data = training, x_latency = training,
model = "weibull", thresh = 1e-4, maxit = 2000,
epsilon = 0.01, verbose = FALSE
)
coef(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.