tlm.control {hett} | R Documentation |
Auxiliary for Controlling tlm Fitting
Description
Auxiliary function for fitting tlm
model. Generally only used
when calling tlm
Usage
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 |
verboseLev |
integer. If 1 then print according to |
Value
A list with the argument as values
Author(s)
Julian Taylor
See Also
Examples
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))
[Package hett version 0.3-3 Index]