Last chance! 50% off unlimited learning
Sale ends in
fscores(object, rotate = "", full.scores = FALSE,
method = "EAP", quadpts = NULL, response.vector = NULL,
degrees = NULL, verbose = TRUE)
ExploratoryClass
, ConfirmatoryClass
, or
MultipleGroupClass
FALSE
(default) then a
summary table with factor scores for each unique pattern
is displayed. Otherwise the original data matrix is
returned with the computed factor scores appended to the
rightmost column""
then the
object@rotate
default value is used (only
applicable to ExploratoryClass
objects)"EAP"
), Bayes modal
("MAP"
), weighted likelihood estimation
("WLE"
), or maximum likelihood ("ML"
)iteminfo
, only necessary for
multidimensional models when method = 'WLE'
mod <- mirt(Science, 1)
tabscores <- fscores(mod)
fullscores <- fscores(mod, full.scores = TRUE)
fullscores <- fscores(mod, full.scores = TRUE, method='MAP')
#calculate MAP for a given response vector
fscores(mod, method='MAP', response.vector = c(1,2,3,4))
Run the code above in your browser using DataLab