slca
EstimationSpecifies control parameters for estimating slca
model.
slcaControl(
em.iterlim = 5000,
em.tol = 1e-08,
nlm.iterlim = 1000,
nlm.tol = 1e-10,
init.param = NULL,
nrep = 1,
test.iter = 500,
na.rm = FALSE,
verbose = FALSE
)
an integer specifying the maximum number of iterations allowed for the EM algorithm. The default is 5000
.
a numeric value setting the tolerance for convergence of the EM algorithm. The default is 1e-8
.
an integer specifying the maximum number of iterations allowed when using the nlm
function for estimation. The default is 1000
.
a numeric value setting the tolerance for convergence of the nlm
function. The default is 1e-10
.
a numeric vector specifying the initial parameter values for estimation.
an integer specifying the number of estimation trials. The default is 1
.
an integer specifying the maximum number of iterations allowed for parameter testing. The default is 500
.
a logical value indicating whether to remove observations containing missing values (NA
). The default is FALSE
.
a logical value indicating whether to display progress updates during the estimation process. The default is FALSE
.
A list
containing control parameters for slca
estimation, including the specified iteration limits, tolerances, and additional options.
slca