Returns the mode of a vector. First in a tie wins (see examples).
Usage
Mode(x, na.rm =FALSE)
Arguments
x
A vector.
na.rm
Remove missing values before calculating the mode (FALSE by
default). NAs are counted just like any other element. That is, an NA in
the vector won't necessarily result in a return NA. See the first example.