summary.eqclist {equateIRT} | R Documentation |
Summarizing a List of Estimated Direct Equating Coefficients
Description
summary
method for class eqclist
.
Usage
## S3 method for class 'eqclist'
summary(object, link, ...)
## S3 method for class 'summary.eqclist'
print(x, ...)
Arguments
object |
an object of the class |
link |
a vector of character strings with the names of the two
forms being linked separated by a dot
(e.g. " |
x |
an object of class |
... |
further arguments passed to or from other methods. |
Value
The function summary.eqclist
returns a list containing the output
of function summary.eqc
for each link
contained in object
.
Author(s)
Michela Battauz
See Also
Examples
# the following code uses item parameter estimates previously obtained
# for examples that start from item response data see function modIRT
# Rasch model
# direct equating coefficients using the "mean-mean" method
data(estrasch)
test<-paste("test", 1:5, sep = "")
modrasch <- modIRT(coef = estrasch$coef, var = estrasch$var, names = test,
display = FALSE)
direclistrasch <- alldirec(mods = modrasch, method = "mean-mean", all = TRUE)
summary(direclistrasch)
summary(direclistrasch, link = "test1.test2")
summary(direclistrasch, link = c("test1.test2", "test1.test5"))
[Package equateIRT version 2.5.0 Index]