Learn R Programming

catSurv (version 1.5.0)

selectItem: Select Next Item

Description

Selects the next item in the question set to be administered to respondent based on the specified selection method.

Usage

selectItem(catObj)

Value

The function selectItem returns a list with three elements:

estimates: a data frame with a row for each unasked question and three columns representing the item index number, the item name, and the item value (calculated by the specified selection method), and

next_item: a numeric representing the index of the item that should be asked next.

next_item_name: a string representing the unique identifier of the item that should be asked next.

Arguments

catObj

An object of class Cat

Author

Haley Acevedo, Ryden Butler, Josh W. Cutler, Matt Malis, Jacob M. Montgomery, Tom Wilkinson, Erin Rossiter, Min Hee Seo, Alex Weil

Details

Selection approach is specified in the selection slot of the Cat object.

The minimum expected posterior variance criterion is used when the selection slot is "EPV". This method calls expectedPV for each unasked item.

The maximum Fisher's information criterion is used when the selection slot is "MFI". This method calls fisherInf for each unasked item.

The maximum likelihood weighted information criterion is used when the selection slot is "MLWI". Note that when no questions have been answered, likelihood evaluates to 1. This method involves integration. See Note for more information.

The maximum posterior weighted information criterion is used when the selection slot is "MPWI". Note that when no questions have been answered, likelihood evaluates to 1. This method involves integration. See Note for more information.

The maximum expected information criterion is used when the selection slot is "MEI". This method calls expectedObsInf for each unasked item. **Not implemented for three parameter model for binary data.**

The maximum Kullback-Leibler information criterion is used when the selection slot is "KL". This method calls expectedKL for each unasked item. See expectedKL for more information.

The maximum likelihood weighted Kullback-Leibler information criterion is used when the selection slot is "LKL". This method calls likelihoodKL for each unasked item.

The maximum posterior weighted Kullback-Leibler information criterion is used when the selection slot is "PKL". This method calls posteriorKL for each unasked item.

The maximum Fisher interval information criterion is used when the selection slot is "MFII". This method involves integration. See Note for more information. The bounds of integration are \(\hat{\theta} \pm \delta\), where \(\delta\) is qnorm(\(z\)) times the square root of the Fisher test information and \(z\) is specified in the z slot of the Cat object.

A random number generator is used when the selection slot is "RANDOM".

References

van der Linden, Wim J. 1998. "Bayesian Item Selection Criteria for Adaptive Testing." Psychometrika 63(2):201-216.

Van der Linden, Wim J., and Peter J. Pashley. 2009. "Item Selection and Ability Estimation in Adaptive Testing." Elements of Adaptive Testing. Springer New York, 3-30.

Veldkamp, B.P., 2003. Item Selection in Polytomous CAT. In New Developments in Psychometrics (pp. 207-214). Springer Japan.

See Also

estimateTheta, expectedPV, fisherInf

Examples

Run this code
## Loading ltm Cat object
data(ltm_cat)

## Store example answers
setAnswers(ltm_cat) <- c(1,0,1,0,1, rep(NA, 35))

## Set different selection criterion and choose next item
setSelection(ltm_cat) <- "EPV"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "MFI"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "MLWI"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "MPWI"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "MEI"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "KL"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "LKL"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "PKL"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "MFII"
selectItem(ltm_cat)

setSelection(ltm_cat) <- "RANDOM"
selectItem(ltm_cat)


Run the code above in your browser using DataLab