simulate data according to Rasch model
With this function data sets according to the dichotomous Rasch model (DRM) are simulated
simDRM(itempar, persons = 500, seed = NULL)
itempar
: a vector with item difficulty parameterspersons
: number of persons for the generated data setseed
: a seed for the random number generated can optionally be setData are generated with category values 0 and 1.
Person parameters are generated by a standard normal distribution.
#set item parameters item_p <- c(-1.5,-0.3,0,0.3,1.5) #number of persons pn <- 500 #simulate data set simdatD <- simDRM(item_p, pn)
Fischer, G. H. (1974). Einfuehrung in die Theorie psychologischer Tests [Introduction to test theory]. Bern: Huber.
simMPRM``simCRSM
Christine Hohensinn