factor_score {IRTest} | R Documentation |
Estimated factor scores
Description
Factor scores of examinees.
Usage
factor_score(x, ability_method = "EAP", quad = NULL, prior = NULL)
Arguments
x |
A model fit object from either |
ability_method |
The ability parameter estimation method.
The available options are Expected a posteriori ( |
quad |
A vector of quadrature points for |
prior |
A vector of the prior distribution for |
Value
theta |
The estimated ability parameter values. If |
theta_se |
The standard errors of ability parameter estimates.
It returns standard deviations of posteriors for |
Author(s)
Seewoo Li cu@yonsei.ac.kr
Examples
# A preparation of dichotomous item response data
data <- DataGeneration(N=500, nitem_D = 10)$data_D
# Analysis
M1 <- IRTest_Dich(data)
# Item fit statistics
factor_score(M1, ability_method = "MLE")