control_mirt: Control aspects of fitting a model in mirt

Description Usage Arguments Value Examples

View source: R/fit-mirt.R

Description

This function should be used to generate the control argument of the fit() function.

Usage

1
2
3
4
5
6
7
8
control_mirt(
  SE = TRUE,
  method = "EM",
  quadpts = NULL,
  control = list(),
  technical = list(),
  ...
)

Arguments

SE, method, quadpts, ...

These arguments are passed to and documented in mirt::mirt(). They can be used to tweak the estimation algorithm.

control

List of arguments passed to argument control of mirt::mirt().

technical

List of arguments passed to argument technical of mirt::mirt().

Value

A list with one element for every argument of control_mirt().

Examples

1
2
3
4
5
6
7
control_mirt(SE = FALSE,
             method = "QMCEM",
             quadpts = 4455,
             technical = list(NCYCLES = 567),
             TOL = .001)
control_mirt(method = "MHRM",
             draws = 5544)

ItemResponseTrees documentation built on July 2, 2020, 2:25 a.m.