Learn R Programming

glmmGS (version 0.5-1)

glmmGS.Control: Construct control list for glmmGS function

Description

Construct a list of control parameters used internally by the glmmGS function.

Usage

glmmGS.Control(reltol = 1e-06, abstol = 1e-06, maxit = 200)

Arguments

reltol
minimum relative tolerance for the parameters update.
abstol
minimum absolute tolerance for the parameters update.
maxit
maximum number of iterations for the parameters update.

Value

  • A list of control parameters for the glmmGS function.

Details

The Gauss-Seidel iterative algorithm stops if the magnitude of every parameter update is less than abstol or less than reltol times the magnitude of the current parameter. If the algorithm reaches maxit number of iterations without converging, then the algorithm stops and returns an error.

See Also

glmmGS

Examples

Run this code
control <- glmmGS.Control(reltol = 1.e-8, abstol = 1.e-25, maxit = 500);

Run the code above in your browser using DataLab