This is something I keep looking up, because for whatever reason R does not come with a built-in function to calculate the mode. (The mode()
function does something else, not what I’d expect given that there are mean()
and median()
…) It’s quite easy to write a short function to calculate the mode in R:
Mode <- function(x) {
uni <- unique(x)
uni[which.max(tabulate(match(x, uni)))]
}