R/mad_normalized.R

Defines functions mad_normalized

## File Name: mad_normalized.R
## File Version: 0.03

mad_normalized <- function(x)
{
    x <- stats::na.omit(x)
    res <- stats::median( abs( x - stats::median(x) ) )
    res <- res/0.6745
    return(res)
}
alexanderrobitzsch/sirt documentation built on March 18, 2024, 1:29 p.m.