Table of contents
Upskilling Made Easy.
Understanding Measures of Central Tendency
Published 08 May 2025
1.7K+
5 sec read
In statistics, measures of central tendency are key descriptive statistics that summarize a dataset by identifying the central point around which the data spread. They provide a single value that represents a whole distribution, making it easier to compare and analyze datasets. The three most common measures of central tendency are the mean, median, and mode. Each measure has its strengths and is used in different cons depending on the characteristics of the data.
The mean, often called the average, is calculated by summing all the values in a dataset and dividing by the number of values. It is a widely used measure of central tendency.
Mean = x̄ = ( Σ x_i ) / n
Where:
Consider the dataset: 4, 8, 6, 5, 3. The mean can be calculated as follows:
Mean = 4 + 8 + 6 + 5 + 3/5 = 5.2
The median is the middle value in a dataset when the values are arranged in ascending or descending order. It effectively divides the dataset into two equal halves and is less affected by outliers compared to the mean.
For the dataset: 4, 8, 6, 5, 3, sorted it becomes: 3, 4, 5, 6, 8.
Median = 5
For an even dataset: 4, 8, 6, 5: sorted: 4, 5, 6, 8.
Median = 5 + 6 / 2 = 5.5
The mode is the value that appears most frequently in a dataset. A dataset can have one mode, more than one mode (bimodal or multimodal), or no mode at all if no value repeats.
For the dataset: 1, 2, 2, 3, 4. The mode is 2, as it appears most frequently.
For the dataset: 1, 1, 2, 2, 3, it has two modes (1 and 2), making it bimodal.
The choice of which measure of central tendency to use depends on the characteristics of the data:
Measures of central tendency—mean, median, and mode—are foundational components of statistical analysis that offer insights into the nature of data distributions. Understanding how to compute and interpret these measures equips you to summarize data effectively, allowing for better decision-making and analysis. By choosing the appropriate measure based on the data's structure, you can ensure accurate representations of central values.
Happy analyzing!