| empirical_rxx {mirt} | R Documentation |
Given secondary latent trait estimates and their associated standard errors
returned from fscores, compute the empirical reliability.
empirical_rxx(Theta_SE)
Theta_SE |
a matrix of latent trait estimates returned from |
Phil Chalmers rphilip.chalmers@gmail.com
## Not run: dat <- expand.table(deAyala) mod <- mirt(dat, 1) theta_se <- fscores(mod, full.scores.SE = TRUE) empirical_rxx(theta_se) theta_se <- fscores(mod, full.scores.SE = TRUE, method = 'ML') empirical_rxx(theta_se) ## End(Not run)