makeparam.norm | R Documentation |
Does the opposite of getparam.norm
.
Converts a list of user-specified parameters to a parameter vector
suitable for input to functions such as da.norm
and em.norm
.
makeparam.norm(s, thetalist)
s |
summary list of an incomplete normal data matrix created
by the function |
thetalist |
list of normal parameters of the same form as one produced by
|
normal parameter in packed storage, suitable for use as a starting
value for em.norm
, mda.norm
, or mdamet.norm
.
prelim.norm
and getparam.norm
.
data(mdata)
s <- prelim.norm(mdata) #do preliminary manipulations
thetahat <- em.norm(s) #compute mle
thetahat <- getparam.norm(s,thetahat,corr=TRUE) #extract parameters
thetahat$r #look at mle correlations
thetahat$r[1,2] <- .5 #tweak a parameter
thetahat <- makeparam.norm(s,thetahat) #convert to packed storage
thetahat <- em.norm(s,thetahat) #run EM again from new starting value
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.