Learn R Programming

equateIRT (version 2.0)

summary.eqc: Summarizing Estimated Equating Coefficients

Description

summary method for class eqc.

Usage

"summary"(object, ...)
"print"(x, ...)

Arguments

object
an object of the class eqc returned by function direc.
x
an object of class summary.eqc, a result of a call to summary.eqc.
...
further arguments passed to or from other methods.

Value

The function summary.eqc returns a list with components
forms
names of equated forms.
method
the equating method used.
coefficients
a $2X2$ matrix with columns for the estimated coefficients A and B and standard errors.

See Also

direc

Examples

Run this code
# three-parameter logistic model
# direct equating coefficients between forms 1 and 2 using the Stocking-Lord method
data(est3pl)
test <- paste("test", 1:5, sep = "")
mod3pl <- modIRT(coef = est3pl$coef, var = est3pl$var, names = test, display = FALSE)
l12 <- direc(mod1 = mod3pl[1], mod2 = mod3pl[2], method = "Stocking-Lord")
summary(l12)

Run the code above in your browser using DataLab