
Maximum-information item selection with an exposure-rate cap.
Source:R/select-items.R
select_restrict_rate.RdA maximum Fisher information selector with a simple exposure control. Each
item's share of all administrations so far (the diagonal of adj_mat,
normalized to sum to one) is treated as an exposure rate, and items whose rate
has reached r_max are withheld. The most informative permitted item is then
administered to each respondent. If a respondent has no permitted
unadministered item, they receive no item that iteration; when this occurs for
every remaining respondent at once, the simulation administers nothing new and
stops, so this selector also acts as an implicit stopping rule.
Arguments
- pers
A data frame of current respondent ability estimates.
- item
A data frame of current item parameter estimates.
- R
A respondent-by-item matrix of potential responses.
- admin
An integer administration matrix;
0indicates an item has not been administered to a respondent. Seemeow()for details.- adj_mat
An item-item adjacency matrix. See
construct_adj_mat().- r_max
The maximum permitted exposure rate (an item's share of all administrations) before that item is withheld. Defaults to 0.025.
Value
An updated administration matrix with the most informative permitted item marked for each respondent who still has one.