tlm.control: Auxiliary for Controlling tlm Fitting

Description Usage Arguments Value Author(s) See Also Examples

Description

Auxiliary function for fitting tlm model. Generally only used when calling tlm

Usage

1
tlm.control(epsilon = 1e-07, maxit = 50, trace = FALSE, verboseLev = 1)

Arguments

epsilon

positive convergence tolerance value. The iterations converge when [newlik - oldlik] < epsilon/2

maxit

integer giving the maximum iterations allowable for the routine

trace

logical. If TRUE output is printed to the screen during each iteration

verboseLev

integer. If 1 then print according to trace. If 2 then print random scale effects also.

Value

A list with the argument as values

Author(s)

Julian Taylor

See Also

tlm

Examples

1
2
3
4
5
6
7
data(mm, package = "hett")
attach(mm)

## change the maximum amount of iterations for the algorithm

fit1 <- tlm(m.marietta ~ CRSP, ~ 1, data = mm, start = list(dof = 3),
estDof = TRUE, control = tlm.control(maxit = 100))

hett documentation built on Oct. 23, 2020, 7:13 p.m.

Related to tlm.control in hett...