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)
}
alexanderrobitzsch/sirt documentation built on March 18, 2024, 1:29 p.m.