Control options for jmcs()
jmcs_control(
quadpoint = NULL,
maxiter = 10000,
verbose = FALSE,
initial.para = NULL,
tol = 1e-04,
method = c("pseudo-adaptive", "standard"),
opt = c("nlminb", "optim")
)A list of control parameters used by jmcs().
Number of Gauss--Hermite quadrature points used for numerical
integration. The default is NULL.
Maximum number of EM iterations. The default is 10000.
Logical value indicating whether to print iteration details.
The default is FALSE.
Optional list of user-supplied initial parameter values
for the EM algorithm. The default is NULL.
Convergence tolerance. The default is 1e-4.
Numerical integration method used in the E-step. Available
options are "pseudo-adaptive" and "standard". The default is
"pseudo-adaptive".
Optimization method used to fit the initial linear mixed-effects
model. Available options are "nlminb" and "optim". The default
is "nlminb".
Specifies numerical integration, convergence, initialization, and optimizer
settings for jmcs().