R/calculate.absmax.R

calculate.absmax <-
function (differences.quantile) 
{
    differences.quantile.abs <- abs(differences.quantile)
    differences.quantile.abs[differences.quantile.abs == Inf] <- 0
    absmax <- max(differences.quantile.abs)
    return(absmax)
}

Try the vudc package in your browser

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

vudc documentation built on May 2, 2019, 9:19 a.m.