coef {diffIRT} | R Documentation |
Returns estimated item and population parameters from a diffIRT
object
## S3 method for class 'diffIRT'
coef(object, ...)
object |
a |
... |
additional parameters, currently not used. |
Returns a list with two entries:
item |
the estimated item parameters, item boundary ( |
pop |
the estimated population parameters, omega_ap and omega_vp. |
Dylan Molenaar d.molenaar@uva.nl
diffIRT for fitting diffusion IRT models.
## Not run:
# simulate data accroding to D-diffusion IRT model
data=simdiff(N=100,nit=10,model="D")
# fit the D-diffusion IRT model
res1=diffIRT(data$rt,data$x)
# extract parameter estimates
coef(res1)
## End(Not run)