Non-parametric item banks
Non-parametric IRT models
Sampled and smoothed item banks
FittedItemBanks.DichotomousPointsItemBank — Type
struct DichotomousPointsItemBank{DomainT} <: PointsItemBankxs::Anyys::Matrix{Float64}
DomainType(::DichotomousPointsItemBank) = DiscreteIndexableDomain()
ResponseType(::DichotomousPointsItemBank) = BooleanResponse()An item bank where all items have IRFs computed at a fixed grid across the latent/ability dimension specified as xs. The responses are stored in ys. In most cases this item banks will be coupled with a Smoother and wrapped in a DichotomousSmoothedItemBank.
FittedItemBanks.DichotomousSmoothedItemBank — Type
struct DichotomousSmoothedItemBank{P<:PointsItemBank, S<:Smoother} <: AbstractItemBankDichotomousSmoothedItemBank(item_bank::PointsItemBank, smoother::Smother)
DomainType(::DichotomousSmoothedItemBank) = OneDimContinuousDomain()
ResponseType(::DichotomousSmoothedItemBank) = BooleanResponse()FittedItemBanks.KernelSmoother — Type
struct KernelSmoother{FunctionT} <: Smootherkernel::Anybandwidths::Vector{Float64}
A smoother that uses a kernel to smooth the IRF. The bandwidths field stores the kernel bandwidth for each item.
FittedItemBanks.MultiGridDichotomousPointsItemBank — Type
struct MultiGridDichotomousPointsItemBank <: PointsItemBankxs::ArraysOfArrays.VectorOfArrays{Float64, 1, 0, Vector{Float64}, Vector{Int64}, Vector{Tuple{}}, SubArray{Float64, 1, Vector{Float64}, Tuple{UnitRange{Int64}}, true}}ys::ArraysOfArrays.VectorOfArrays{Float64, 1, 0, Vector{Float64}, Vector{Int64}, Vector{Tuple{}}, SubArray{Float64, 1, Vector{Float64}, Tuple{UnitRange{Int64}}, true}}
An item bank where all items each IRF has been computed on a potentially distrinct grid across the latent/ability dimension specified as xs. The responses are stored in ys. In most cases this item banks will be coupled with a Smoother and wrapped in a DichotomousSmoothedItemBank.
FittedItemBanks.NearestNeighborSmoother — Type
struct NearestNeighborSmoother <: SmootherNearest neighbor/staircase smoother.
FittedItemBanks.Smoother — Type
abstract type SmootherFittedItemBanks.gauss_kern — Method
gauss_kern(u)
A guassian kernel for use with KernelSmoother
FittedItemBanks.gridify — Method
gridify(item_bank, xs)
Converts a dichotomous item bank item_bank into a gridded item bank by evaluating the items at points xs.
FittedItemBanks.quad_kern — Method
quad_kern(u)
A quadratic kernel for use with KernelSmoother
FittedItemBanks.uni_kern — Method
uni_kern(u)
A uniform kernel for use with KernelSmoother