R/sirt_probs_to_logit.R

Defines functions sirt_probs_to_logit

## File Name: sirt_probs_to_logit.R
## File Version: 0.02

sirt_probs_to_logit <- function(y)
{
    K <- length(y)
    y_logit <- log( y[-K] / y[K] )
    return(y_logit)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.