Description Usage Arguments Value Author(s) References See Also Examples
S3 Method for summary
of objects of class iio.class.
Summarize checks of invariant item ordering.
1 2 |
object |
list produced by |
... |
Optional parameters will be ignored |
method |
String describing the method used for investigating invariant item ordering: Either "MIIO" (Method Manifest Invariant Item Ordering), "MSCPM" (Method Manifest Scale Cumulative Probability Model), or "IT" (Method Increasingness in Transposition) |
item.summary |
Matrix with |
backward.selection |
Matrix showing the number of violations for each item (rows) at each step of the backward item selection proces (columns). The first column shows the number of violations for each item. Then in an iterative procedure, the item whose removal results in the largest decrease of violations is removed and the number of violations is computated again. If the reduction in the number of violations is undecisive then, from the candidate items, the item having the smallest scalability coefficient is removed. The backward selection procedure stops when there are no more violations. |
HT |
Numeric: Coefficient HT for the selected items. Given an IIO, coefficient HT expresses the strength of the ordering (Ligtvoet et al., 2010). |
L. A. van der Ark L.A.vanderArk@uva.nl
Ligtvoet, R., L. A. van der Ark, J. M. te Marvelde, and K. Sijtsma (2010). Investigating an invariant item ordering for polytomously scored items. Educational and Psychological Measurement, 70, 578-595.
Ligtvoet, R., L. A. van der Ark, W. P. Bergsma, and K. Sijtsma (2011). Polytomous latent scales for the investigation of the ordering of items. Psychometrika, 76, 200-216.
Molenaar, I.W. and Sijtsma, K. (2000) User's Manual MSP5 for Windows [Software manual]. Groningen, The Netherlands: IEC ProGAMMA.
Sijtsma, K., R. R. Meijer, and L. A. van der Ark (2011). Mokken scale analysis as time goes by: An update for scaling practitioners. Personality and Individual Differences, 50, 31-37.
Van der Ark, L. A. (2007). Mokken scale analysis in R. Journal of Statistical Software, 20 (11), 1-19. http://www.jstatsoft.org/v20/i11
Van der Ark, L. A. (2012). New developments in Mokken scale analysis in R. Journal of Statistical Software, 48(5), 1-27. http://www.jstatsoft.org/v48/i5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Examples from Ligtvoet et al. (2011).
data(cavalini)
X1 <- cavalini[,c(3,5,6,7,9,11,13,14)]
# Use Method MIIO and remove items violating MIIO
iio.list1 <- check.iio(X1)
summary(iio.list1)
plot(iio.list1)
X2 <- X1[,is.na(charmatch(dimnames(X1)[[2]],names(iio.list1$items.removed)))]
# Use Method MSCPM and remove items violating MSCPM
iio.list2 <- check.iio(X2,method="MSCPM")
summary(iio.list2)
X3 <- X2[,is.na(charmatch(dimnames(X2)[[2]],names(iio.list2$items.removed)))]
# Use Method IT
iio.list3 <- check.iio(X3,method="IT")
summary(iio.list3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.