Mode Calculator
mode
command returns the mode of given values.
mode 1 1 5 9
Result:
1
The arguments should be separated by space or comma.
mode 1, 1, 5, 9
Result:
1
What is mode?
The mode of elements is the value that occurs most often. 1 is the mode of 1, 1, 5, 9 because 1 occurs twice and others once.
Let's see another example.
mode 1, 1, 1, 4
Result: 1