imp.norm {norm} | R Documentation |
Impute missing multivariate normal data
Description
Draws missing elements of a data matrix under the multivariate normal model and a user-supplied parameter
Usage
imp.norm(s, theta, x)
Arguments
s |
summary list of an incomplete normal data matrix |
theta |
value of the normal parameter under which the missing data are to be
randomly imputed. This is a parameter vector in packed storage, such
as one created by |
x |
the original data matrix used to create the summary list |
Details
This function simply performs one I-step of data augmentation.
Value
a matrix of the same form as x
, but with all missing values filled in
with simulated values drawn from their predictive distribution given
the observed data and the specified parameter.
WARNING
Before this function may be used, the random number generator seed
must be initialized with rngseed
at least once in the current S
session.
References
See Section 5.4.1 of Schafer (1996).
See Also
prelim.norm
, makeparam.norm
, and rngseed
.
Examples
data(mdata)
s <- prelim.norm(mdata) #do preliminary manipulations
thetahat <- em.norm(s) #find the mle
rngseed(1234567) #set random number generator seed
ximp <- imp.norm(s,thetahat,mdata) #impute missing data under the MLE