R/Mode.R

Defines functions Mode

Documented in Mode

Mode <-
function(x)
{
    ux <- unique(x)
    ux[which.max(tabulate(match(x, ux)))]
}

Try the saasCNV package in your browser

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

saasCNV documentation built on May 1, 2019, 7:49 p.m.