R/utilities.R
modalvalue.Rd
Find the most common entry in a vector. Ties are not allowed, the first value encountered within the modal set if there are ties is deemed the mode.
modalvalue(x)
numeric vector.
numeric
Numeric value of the mode.
d1 <- c(1, 1, 1, 2, 2, 3) modalvalue(d1)