7.9 Limited information statistics

Limited-information statistics focus on marginal proportions or probabilities. The primary idea of the limited information statistics is to utilize r-th order moments (πr) instead of using proportions of all possible response patterns.

M. Hansen et al. (2014) explored the utility of limited information matrix for CDMs, and suggested that M2 is more consistent in detecting test-level model misspecification. Hence, let us explore about M2 statistic to assess the test lelvel model data fit.

We consider M2 statistic, which only focuses on the first two marginals.

The first marginal proportions are the proportions of students who answer each item correctly:

p1=[P(Y1=1),,P(Yj=1),,P(YJ=1)]

The second marginal proportions are the proportions of students who answer a pair of items correctly:

p2=[P(Y1=1,Y2=1),,P(Yj=1,Yj=1),,P(YJ1=1,YJ=1)] Let us try to understand the values of p1 and p2

Code
df<-data1[1:10,1:5]
df
##    Item1 Item2 Item3 Item4 Item5
## 1      1     1     1     1     1
## 2      1     1     1     1     0
## 3      1     0     1     0     1
## 4      1     0     1     0     1
## 5      1     0     0     0     0
## 6      1     0     1     1     1
## 7      1     1     0     1     0
## 8      1     1     1     1     1
## 9      1     1     0     1     0
## 10     1     1     1     1     0

1st order probabilities,

  • P(Y1=1)=10/10
  • P(Y2=1)=6/10 and so on.

Second order probabilities,

  • P(Y1=1,Y2=1)=6/10=0.6
  • P(Y2=1,Y3=1)=4/10=0.4

and so on.

We can also find the model-predicted counterparts (i.e., ^π1 and ^π2) in similar way.

References

Hansen, M., Cai, L., Monroe, S., & Li, Z. (2014). Limited-information goodness-of-fit testing of diagnostic classification item response theory models. CRESST report 840. National Center for Research on Evaluation, Standards, and Student Testing (CRESST).