np.dich(dat, theta, thetagrid, progress = FALSE, bwscale = 1.1,
method = "normal")
wle.rasch
bwscale
$\cdot N^{-1/5}$normal
performs kernel regression
with untransformed item responses. The method binomial
uses nonparametric logistic regression implemented
in the #############################################################################
# EXAMPLE 1: Reading dataset
#############################################################################
data( data.read )
dat <- data.read
# estimate Rasch model
mod <- rasch.mml2( dat )
# WLE estimation
wle1 <- wle.rasch( dat=dat , b =mod$item$b )$theta
# nonparametric function estimation
np1 <- np.dich( dat=dat, theta= wle1, thetagrid = seq(-2.5 , 2.5 , len=100 ) )
print( str(np1))
# plot nonparametric item response curves
plot( np1 , b = mod$item$b )
Run the code above in your browser using DataLab