irt-0.2.0.1: Item Response Theory functions for use in computerized adaptive testing

Safe HaskellNone
LanguageHaskell2010

Math.IRT.Fisher

Synopsis

Documentation

data FisherInfo Source #

Constructors

FisherInfo 

Fields

fisherInfoObserved :: (ContDistr d, DensityDeriv d) => Double -> [Bool] -> [d] -> FisherInfo Source #

The observed Fisher Information Applies a min/max prior to ensure a real-valued SEM

fisherInfoExpected :: ContDistr d => Double -> [d] -> FisherInfo Source #

The expected Fisher Information

l' :: ContDistr d => Bool -> d -> Double -> Double Source #

The first derivative of l, whatever l is... Once again, the catIrt documentation disappoints. According to catIrt, "u is the response, and x are the parameters." We only implement the MLE route

l'' :: (ContDistr d, DensityDeriv d) => Bool -> d -> Double -> Double Source #

The second derivative of l (same one as in l')