logLik.mixturecure | R Documentation |
This function returns the log-likelihood for a user-specified model criterion
or step for a curegmifs
, cureem
,
cv_curegmifs
or cv_cureem
fitted object.
## S3 method for class 'mixturecure'
logLik(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. |
log-likelihood of the fitted mixture cure model using the specified criteria.
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
)
logLik(fit, model_select = "AIC")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.