R/tam_np_2pl_irf_probs.R

Defines functions tam_np_2pl_irf_probs

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


tam_np_2pl_irf_probs <- function(x, par0, index, desmat, ...)
{
    par0[index] <- x
    pred <- desmat %*% par0
    TP <- nrow(desmat)
    p1 <- as.vector( stats::plogis(pred) )
    probs <- matrix(0, nrow=2, ncol=TP)
    probs[2,] <- p1
    probs[1,] <- 1 - p1
    return(probs)
}

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.