grm
, ltm
, rasch
or tpm
objects.## S3 method for class 'grm':
coef(object, \dots)
## S3 method for class 'ltm':
coef(object, standardized = FALSE, prob = FALSE, order = FALSE, \dots)
## S3 method for class 'rasch':
coef(object, prob = FALSE, order = FALSE, \dots)
## S3 method for class 'tpm':
coef(object, prob = FALSE, order = FALSE, \dots)
grm
, class ltm
, class rasch
or class tpm
.TRUE
the standardized loadings are also returned. See Details
for more info.TRUE
the probability of a positive response for the median individual
(i.e., $Pr(x_i = 1 | z = 0)$, with $i = 1, \ldots, p$ denoting the items)
is also returned.TRUE
the items are sorted according to the difficulty estimates.ltm()
.grm
,
ltm
,
rasch
,
tpm
fit <- grm(Science[c(1,3,4,7)])
coef(fit)
fit <- ltm(LSAT ~ z1)
coef(fit, TRUE, TRUE)
m <- rasch(LSAT)
coef(fit, TRUE, TRUE)
Run the code above in your browser using DataLab