mclogit.control
returns a list of default parameters
that control the fitting process of mclogit
.
mclogit.control(epsilon = 1e-08,
maxit = 25, trace=TRUE)
mmclogit.control(epsilon = 1e-08,
maxit = 25, trace=TRUE,
trace.inner=FALSE,
avoid.increase = FALSE,
break.on.increase = FALSE,
break.on.infinite = FALSE,
break.on.negative = FALSE)
A list.
positive convergence tolerance \(\epsilon\); the iterations converge when \(|dev - dev_{old}|/(|dev| + 0.1) < \epsilon\).
integer giving the maximal number of IWLS or PQL iterations.
logical indicating if output should be produced for each iteration.
logical; indicating if output should be produced for each inner iteration of the PQL method.
logical; should an increase of the deviance be avoided by step truncation?
logical; should an increase of the deviance be avoided by stopping the algorithm?
logical; should an infinite deviance stop the algorithm instead of leading to step truncation?
logical; should a negative deviance stop the algorithm?