How to find the statistical mode?

In R, mean() and median() are standard functions which do what you’d expect. mode() tells you the internal storage mode of the object, not the value that occurs the most in its argument. But is there is a standard library function that implements the statistical mode for a vector (or list)?

35 Answers
35

Leave a Comment