multiec | R Documentation |
Calculates the equating coefficients between multiple forms.
multiec(mods, base = 1, method = "mean-mean", se = TRUE, nq = 30, start = NULL,
iter.max = 100000, obsinf = TRUE, trace = TRUE)
mods |
an object of the class |
base |
integer value indicating the base form. |
method |
the method used to compute the equating coefficients.
This should be one of " |
se |
logical; if |
nq |
number of quadrature points used for the Gauss-Hermite quadrature for
methods " |
start |
initial values. This can be a vector containing the A and B equating coefficients excluding
the base form, or an object of class |
iter.max |
maximum number of iterations allowed.
Used only with methods " |
obsinf |
logical; if |
trace |
logical; if |
The methods implemented for the computation of the multiple equating coefficients are
the multiple mean-mean method ("mean-mean
"),
the multiple mean-geometric mean method ("mean-gmean
"),
the multiple item response function method ("irf
"),
the multiple test response function method ("trf
"),
and likelihood-based equating ("lik
").
An object of class mlteqc
with components
A |
A equating coefficients. |
B |
B equating coefficients. |
se.A |
standard errors of A equating coefficients. |
se.B |
standard errors of B equating coefficients. |
varAB |
covariance matrix of equating coefficients. |
as |
discrimination parameters on a common scale |
bs |
difficulty parameters on a common scale |
se.as |
standard errors of discrimination parameters on a common scale. |
se.bs |
standard errors of difficulty parameters on a common scale. |
tab |
data frame containing item parameter names ( |
varFull |
list of covariance matrices of the item parameter estimates of every form. |
partial |
partial derivatives of equating coefficients with respect to the item parameters. |
itmp |
number of item parameters of the IRT model. |
method |
the equating method used. |
basename |
the name of the base form. |
convergence |
An integer code. 0 indicates successful convergence.
Returned only with methods " |
Michela Battauz, Waldir Leoncio [ctb]
Battauz, M. (2017). Multiple equating of separate IRT calibrations. Psychometrika, 82, 610–636.
Battauz, M., Leoncio, W. (2023). A Likelihood Approach to Item Response Theory Equating of Multiple Forms Applied Psychological Measurement, 47, 200-220. doi: 10.1177/01466216231151702.
Haberman, S. J. (2009). Linking parameter estimates derived from an item response model through separate calibrations. ETS Research Report Series, 2009, i-9.
score.mlteqc
, modIRT
data(est2pl)
# prepare the data
mods <- modIRT(coef = est2pl$coef, var = est2pl$var, display = FALSE)
# Estimation of the equating coefficients with the multiple mean-mean method
eqMM <- multiec(mods = mods, base = 1, method = "mean-mean")
summary(eqMM)
# Estimation of the equating coefficients with the
# multiple mean-geometric mean method (Haberman, 2009)
eqMGM <- multiec(mods = mods, base = 1, method = "mean-gmean")
summary(eqMGM)
# Estimation of the equating coefficients with the multiple item response function method
eqIRF <- multiec(mods = mods, base = 1, method = "irf")
summary(eqIRF)
# Estimation of the equating coefficients with the multiple item response function method
# using as initial values the estimates obtained with the multiple mean-geometric mean method
eqMGM <- multiec(mods = mods, base = 1, method = "mean-gmean", se = FALSE)
eqIRF <- multiec(mods = mods, base = 1, method = "irf", start = eqMGM)
summary(eqIRF)
# Estimation of the equating coefficients with the multiple test response function method
eqTRF <- multiec(mods = mods, base = 1, method = "trf")
summary(eqTRF)
# Estimation of the equating coefficients with the likelihood-based method
eqLIK <- multiec(mods = mods, base = 1, method = "lik")
summary(eqLIK)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.