data(cog) # loading example data set
# calculating itemparameters and SE for two random allocated subsamples
grmse<-grmSE.dicho(daten=cog[,4:34], teil = "random")
# some examples for plotting options ########
# plotting item difficulties for two subsamples against each other
# with elipses for a CI = 95\% .
plot(grmse)
# using triangles as plotting pattern
plot(grmse,pch=2)
#plotting without CI ellipses
plot(grmse,ci=0,pch=2)
# plotting with item names
plot(grmse,ci=0, itemNames=TRUE,srt=90)
# Changing the size of the item names (too big to read)
plot(grmse,itemNames=TRUE, cex.names = 1.3)
# plotting with item names and rotate them about 90 degrees
plot(grmse,itemNames=TRUE,srt=90, cex.names = .5)
# Changing the color of the CI ellipses
plot(grmse,itemNames=TRUE, srt=90, cex.names = .5, col.error="green")
###### example from details section 'Some Notes on Standard Errors' ########
# grmse_400<-grmSE.dicho(daten=cog[,4:34], teil = "random",nsample=400)
######
# plot(grmse)
# plot(grmse_400)Run the code above in your browser using DataLab