Learn R Programming

equateIRT (version 2.5.1)

summary.eqc: Summarizing Estimated Equating Coefficients

Description

summary method for class eqc.

Usage

# S3 method for eqc
summary(object, ...)

# S3 method for summary.eqc print(x, ...)

Value

The function summary.eqc returns a list with components

forms

names of equated forms.

method

the equating method used.

coefficients

a \(2 \times 2\) matrix with columns for the estimated coefficients A and B and standard errors.

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.

Author

Michela Battauz

See Also

direc, modIRT

Examples

Run this code
# the following code uses item parameter estimates previously obtained
# for examples that start from item response data see function modIRT

# 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