CEP_1t | R Documentation |
Function to compute classification error probabilities (CEP) for attributes (for single time-point situations).Details can be found in Iaconangelo (2017).
CEP_1t(GDINA.obj)
GDINA.obj |
a G-DINA model object returned from |
a list with elements
the sample-level correction weights
the posterior distribution level correction weights
Uses of classification error probabilities in the three-step approach to estimating cognitive diagnosis models (Doctoral dissertation). https://rucore.libraries.rutgers.edu/rutgers-lib/55495/PDF/1/play/
if(requireNamespace("GDINA")){
library(GDINA)
dat <- sim10GDINA$simdat
Q <- matrix(c(1,0,0,
0,1,0,
0,0,1,
1,0,1,
0,1,1,
1,1,0,
0,0,1,
1,0,0,
1,1,1,
1,0,1),byrow = TRUE,ncol = 3)
fit.object <- GDINA(dat = dat, Q = Q, model = "GDINA", att.dist = "independent",verbose = FALSE)
CEP <- CEP_1t(fit.object)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.