Overview
The mode is a measure of central tendency that identifies the most frequently occurring value or values in a dataset. For discrete data it is the observation with the highest frequency. For continuous distributions the mode corresponds to the point(s) at which the probability density function reaches a maximum. The mode is commonly used alongside the mean and median to summarize the location of data.
Definition and simple examples
In an ungrouped list of values the mode is the value that appears most often. For example, in the list {2, 3, 3, 5, 7, 3} the mode is 3. When no value repeats, the dataset is often described as having no mode. When two values are tied for highest frequency the data are bimodal; ties with more than two peaks are called multimodal. Example: {1,1,2,2,3} has modes 1 and 2.
Types, ties and terminology
- Unimodal: one mode.
- Bimodal: two modes of equal frequency.
- Multimodal: more than two modes.
- No mode: every value occurs with equal frequency or no repeats.
Grouped and continuous data
For data binned into classes (histogram bins) the mode is often estimated as the modal class—the class with largest frequency. A common interpolation formula for a modal class with lower bound L, class width h, frequency of modal class f_m, and frequencies of adjacent classes f_1 (previous) and f_2 (next) is: estimated mode ≈ L + ((f_m - f_1) / (2 f_m - f_1 - f_2)) × h. For continuous probability distributions the mode is the value where the density function attains its maximum; distributions can be asymmetric or multimodal. In practice, modes for continuous samples are often estimated using kernel density estimation or smoothed histograms.
Properties, uses and comparison
The mode is easy to compute, meaningful for nominal (categorical) data, and robust to outliers: extreme values do not affect which category is most frequent. Unlike the mean, the mode does not require numeric data and, unlike the median, it is not necessarily unique. However, it can be unstable in small samples (a small change can change the mode), and for continuous data a single numeric sample may not reveal a clear mode without smoothing.
Practical considerations and further reading
When collecting sample data or summarizing populations, the mode is useful to report alongside other summaries because it highlights the most common outcome. Analysts often consult the mode when the most typical category matters (e.g., most common product size, survey response, or defect type). For technical background and broader context within the field of statistics, consult standard statistical references and textbooks that cover measures of central tendency and density estimation techniques.