Extract the log-likelihood of a lcModel
# S3 method for class 'lcModel'
logLik(object, ...)
A numeric
with the computed log-likelihood. If unavailable, NA
is returned.
The default implementation checks for the existence of the logLik()
function for the internal model, and returns the output, if available.
data(latrendData)
if (rlang::is_installed("lcmm")) {
method <- lcMethodLcmmGBTM(
fixed = Y ~ Time,
mixture = ~ 1,
id = "Id",
time = "Time",
nClusters = 3
)
gbtm <- latrend(method, data = latrendData)
logLik(gbtm)
}
#> 'log Lik.' -962.2536 (df=7)