data(bfiN) # loading example data set
# calculating itemparameters and SE for two random allocated subsamples
grm<-grm(daten=bfiN, teil = "random")
summary(grm)
# some examples for plotting options
# plotting item difficulties for two subsamples against each other
# with elipses for a CI = 95\% .
plot(grm)
# using triangles as plotting pattern
plot(grm,pch=2)
#plotting without CI ellipses
plot(grm,ci=0,pch=2)
# plotting with item names
plot(grm,itemNames=TRUE)
# Changing the size of the item names
plot(grm,itemNames=TRUE, cex.names = 1.3)
# Changing the color of the CI ellipses
plot(grm,itemNames=TRUE, cex.names = .8, col.error="green")
###### example from details section 'Some Notes on Standard Errors' ########
grm<-grm(daten=bfiN, teil = "random",splitseed=13)
plot(grm)
######
grm_400<-grm(daten=bfiN, teil = "random", splitseed=13 ,nsample=400)
plot(grm_400)Run the code above in your browser using DataLab