loglik.mix: Loglikelihood for Incomplete Data under the General Location...

View source: R/mix.R

loglik.mixR Documentation

Loglikelihood for Incomplete Data under the General Location Model

Description

Calculates the observed-data loglikelihood under the general location model at a user-specified parameter value.

Usage

loglik.mix(s, theta)

Arguments

s

summary list of an incomplete data matrix x created by the function prelim.mix.

theta

parameter list, such as one produced by ecm.mix or da.mix.

Value

the value of the loglikelihood function at theta.

References

Schafer, J. L. (1996) Analysis of Incomplete Multivariate Data. Chapman & Hall, Chapter 9.

See Also

prelim.mix, em.mix, ecm.mix.

Examples

data(stlouis)
s <- prelim.mix(stlouis,3)       # preliminary manipulations
thetahat <- em.mix(s)      # MLE under unrestricted general location model
loglik.mix(s, thetahat)  # loglikelihood at thetahat

mix documentation built on May 31, 2022, 5:07 p.m.

Related to loglik.mix in mix...