glmmGS.Control: Construct control list for 'glmmGS' function

Description Usage Arguments Details Value Author(s) See Also Examples

Description

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

Usage

1
	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.

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.

Value

A list of control parameters for the glmmGS function.

Author(s)

Michele Morara, Louise Ryan, Subharup Guha, Christopher Paciorek

See Also

glmmGS

Examples

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

glmmGS documentation built on Sept. 12, 2016, 12:07 p.m.