tlm.control {hett} | R Documentation |
Auxiliary function for fitting tlm
model. Generally only used
when calling tlm
tlm.control(epsilon = 1e-07, maxit = 50, trace = FALSE, verboseLev = 1)
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.
|
A list with the argument as values
Julian Taylor
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))