R/tam_mml_3pl_calc_ll_est_guessing.R

Defines functions tam_mml_3pl_calc_ll_est_guessing

## File Name: tam_mml_3pl_calc_ll_est_guessing.R
## File Version: 0.04

tam_mml_3pl_calc_ll_est_guessing <-
    function( n0ij, n1ij, probs, eps )
{
    l1 <- rowSums( n0ij * log( probs[,1,] + eps ) + n1ij * log( probs[,2,] + eps ) )
    return(l1)
}

Try the TAM package in your browser

Any scripts or data that you put into this service are public.

TAM documentation built on Aug. 29, 2022, 1:05 a.m.