Glossary

Central Tendency

Glossary

Central Tendency

Introduction

Every dataset eventually gets asked for its one-number summary: the typical task time, the average rating, the usual order value. Central tendency is the statistical name for that "typical", and it comes in three classic flavours (mean, median, mode) that agree on tidy data and diverge exactly when the data gets interesting. Choosing among them is a small decision that quietly shapes every readout. This article covers the three measures, when each tells the truth, and why the average is so often the wrong kind of typical.

What is Central Tendency?

Central tendency is the tendency of data to cluster around a middle value, and its measures are the single numbers chosen to represent that middle: the mean (the arithmetic average: sum divided by count), the median (the middle value when observations are ordered: half above, half below), and the mode (the most frequent value or category). On symmetric, well-behaved data the three coincide and the choice is cosmetic. On real research data (skewed times, long-tailed revenues, lumpy ratings) they split apart, and each answers a genuinely different question: the mean answers "what does the total per head look like?", the median "what does the typical individual look like?", and the mode "what is the most common single outcome?".

Choosing the Honest Middle

1. Skew decides mean versus median.
Task times, session lengths, incomes, and order values share a shape: most observations modest, a long tail of large ones. The tail drags the mean upward while the median stays with the crowd, which is why "average completion time" routinely describes an experience almost nobody had. For skewed measures, lead with the median; report the mean when the total genuinely matters (revenue planning cares about sums; experience claims care about people).

2. Outliers vote in the mean, not the median.
One participant's 40-minute struggle owns a 12-person mean and barely touches the median: the median's robustness is the practical reason usability metrics prefer it at small n, with outlier investigation as a separate, explicit step rather than silent deletion.

3. Measurement type constrains the menu.
Categories (nominal variables) support only the mode; ordered scales sit in the long-argued middle where medians and distributions are the safe report and means of single Likert items remain contested; true numeric measures support all three.

4. No middle without its spread.
A centre stripped of dispersion (range, interquartile range, standard deviation) hides everything decisions need: a 4.1 average rating means one thing as consensus and another as a polarised split of 5s and 1s. The honest summary is centre plus spread plus, wherever feasible, the distribution itself, one chart that ends most arguments a lone average starts.

Central Tendency in Readouts

The reporting craft: name which middle you used and why ("median time, given the skew"); show distributions for anything skewed, bimodal, or contested; resist averaging averages (segment means recombine only with weighting); and remember that summaries feed inference, where the mean's mathematical tractability explains its dominance in testing even while the median tells the experience story. The two-line report (median for the claim, mean with interval for the machinery) serves most product research well.

The Takeaway

Central tendency is the art of the honest middle: mean for totals and tractability, median for typical people and skewed truths, mode for commonest cases and categories, and none of them alone. Match the measure to the data's shape and the sentence's claim, staple the spread to every centre, and show the distribution when it matters, because the average is a summary, not a citizen: often, nobody in the dataset is average at all.

Further reading

For the measures and their selection:

Articles:

1. Central Tendency: Mean, Median and Mode - Scribbr
The three measures with calculation, comparison, and guidance on matching each to data type and shape.

2. Outliers - Scribbr
The extreme values that split mean from median, and how to handle them honestly.