GENMETA.control {GENMETA} | R Documentation |
Auxiliary for controlling the IRWLS algorithm
Description
This is an auxiliary function for the iteratively reweighted least squares algorithm for GENMETA. This is used internally by the myoptim function, but can be used by the user to create a control argument in the GENMETA function
Usage
GENMETA.control(epsilon = 1e-06, maxit = 1000)
Arguments
epsilon |
a positive numeric indicating converegence tolerence; the algorithm stops when the absolute difference between the estimates in current and previous step is less than epsilon, i.e, |
maxit |
a positive number indicating the maximum number of iterations to be used in the algorithm. Default is 1000. |
Value
A list with components named as the arguments.
Examples
control <- GENMETA.control(1e-08, 100)
[Package GENMETA version 0.2.0 Index]