Generate maximum likelihood estimates of theta.
MLE(
object,
start_theta = NULL,
max_iter = 100,
crit = 0.001,
select = NULL,
theta_range = c(-4, 4),
truncate = FALSE,
max_change = 1,
do_Fisher = TRUE
)# S4 method for test
MLE(
object,
start_theta = NULL,
max_iter = 100,
crit = 0.001,
select = NULL,
theta_range = c(-4, 4),
truncate = FALSE,
max_change = 1,
do_Fisher = TRUE
)
# S4 method for test_cluster
MLE(object, start_theta = NULL, max_iter = 100, crit = 0.001, select = NULL)
An optional vector of start theta values.
Maximum number of iterations.
Convergence criterion.
A vector of indices identifying the items to subset.
A range of theta values: c(minTheta, maxTheta).
Set TRUE
to bound MLE to theta_range.
Maximum change between iterations.
Set TRUE
to use Fisher's method of scoring.