# Loading the 'tcals' parameters
data(tcals)
tcals <- as.matrix(tcals)
# Selecting 1 starting item, initial ability estimate is 0
startItems(tcals)
# Selecting 3 starting items, initial ability estimate is 1
# and bandwidth is 2
startItems(tcals, nrItems=3, theta=1, bw=2)
# Selecting 5 starting items, initial ability estimate is 2
# and bandwidth is 3
startItems(tcals, nrItems=5, theta=2, bw=3)
# Random selection of 4 starting items
startItems(tcals, seed=1, nrItems=4)
# Selection of the first 5 starting items
startItems(tcals, fixItems=1:5)
Run the code above in your browser using DataLab