logLik1 | R Documentation |
This function is generic; method functions can be written to handle specific classes of objects.
logLik1(modfit, dt1, dtInit)
modfit |
an object representing a model fitted to data using maximum likelihood estimation. |
dt1 |
a data frame with data for one subject, for whom the log-likelihood function is to be evaluated. |
dtInit |
an optional auxiliary data frame. |
Calculates contribution of one subject to the log-likelihood
This function is generic; method functions can be written to handle specific classes of objects.
Numeric scalar value representing the contribution of a given subject to the overall log-likelihood returned by logLik
.
Andrzej Galecki and Tomasz Burzykowski
Galecki, A., & Burzykowski, T. (2013). *Linear Mixed-Effects Models: A Step-by-Step Approach*. Springer.
library(nlme)
logLik(fm1 <- lme(distance ~ age, data = Orthodont)) # random is ~ age
dt1 <- subset(Orthodont, Subject == "M01")
logLik1(fm1, dt1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.