What is the Mode?
The mode is the value that appears most frequently in a data set. It is the only measure of central tendency that applies to categorical (non-numeric) data — and the only one a data set can have more than one of.
Finding the Mode
- List all distinct values in the data set
- Count how many times each value appears (its frequency)
- The value with the highest frequency is the mode
- If no value repeats → no mode
- If two values share the highest frequency → bimodal
- Three or more → multimodal
Examples
Unimodal (one mode): [1, 2, 2, 3, 4] → mode = 2
No mode: [1, 2, 3, 4] → every value appears once → None
Bimodal: [1, 1, 2, 2, 3] → modes = 1 and 2 (each appears twice)
Multimodal: [1, 1, 2, 2, 3, 3] → modes = 1, 2 and 3
When to Use the Mode
The mode is most useful for:
- Categorical data: most popular shoe size, most common eye colour, most frequent survey answer
- Discrete counts: most common number of children per household, most frequent defect type
- Describing shape: a bimodal distribution (two modes) often signals two distinct sub-groups in your data
The mode is the only average computable for non-numeric data. You can find the most popular car colour, but not its mean or median.
Mode vs Mean vs Median
For the data set [1, 2, 2, 3, 10]:
- Mode = 2 (appears most often)
- Median = 2 (middle value of the sorted list)
- Mean = (1+2+2+3+10)/5 = 3.6 (pulled up by the outlier 10)
Here the mode and median agree, while the mean is distorted by the single large value. Use the statistics calculator to explore all three on your own data.