How to find the statistical mode?
Asked 07 September, 2021
Viewed 2.1K times
  • 57
Votes

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)?

30 Answer