Learn R Programming

mirt (version 1.17.1)

empirical_rxx: Function to calculate the empirical (marginal) reliability

Description

Given secondary latent trait estimates and their associated standard errors returned from fscores, compute the empirical reliability.

Usage

empirical_rxx(Theta_SE)

Arguments

Theta_SE
a matrix of latent trait estimates returned from fscores with the options full.scores = TRUE and full.scores.SE = TRUE

See Also

fscores, marginal_rxx

Examples

Run this code
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)

Run the code above in your browser using DataLab