CatR

Wraps the catR R package.

ComputerAdaptiveTestingExt.CatR.StatefulCatRType
mutable struct StatefulCatR <: ComputerAdaptiveTesting.Stateful.StatefulCat
function StatefulCatR(
    item_bank;
    start_item=1,
    criterion,
    method,
    prior_dist="norm",
    prior_par=@SVector(0.0, 1.0)
)

The StatefulCatR type implements the ComputerAdaptiveTesting.Stateful interface using the functions provided by the catR R package.

The item_bank can be any supported implementation of FittedItemBanks.AbstractItemBank or a raw R object supported by catR.

The criterion, method, start_item will be passed to catR's nextItem function, while method will be passed to thetaEst.

source