Set Control Parameters for daGauss

DESCRIPTION:

Allows control parameters to be set for daGauss.

USAGE:

daGauss.control(niter = 1, seed = .Random.seed, 
    rcmin = sqrt(.Machine$double.eps), 
    save = seq(max(1, floor(0.1 * niter)), niter, 1), trace = F) 

OPTIONAL ARGUMENTS:

niter
the total number of iterations. Alternatively, niter can be a list containing some or all parameters in the list returned by daLoglin.control().
seed
integer vector containing the random number seed as required by the random number generators.
rcmin
parameter used to determine when the variance-covariance matrix is singular. Typically, sqrt(.Machine$double.eps) is acceptable.
save
a sequence of positive integers. The parameter estimates for iterations specified in vector save are returned as rows in matrix paramIter of the missmodel object.
trace
if TRUE, additional information is printed during the data augmentation algorithm.

VALUE:

a list containing the control values described above.

SEE ALSO:

, , .

EXAMPLES:

daGauss.control(niter = 500, save = 201:500, trace = T)