Choosing the Right Summary
Mean or median? SD or IQR? Which plot? A capstone on describing a dataset honestly.
You already have the tools — now the skill is picking them
The earlier lessons in this module handed you a whole toolbox. You can measure the center of a dataset with the mean, the median, or the mode. You can measure its spread with the range, the standard deviation, or the IQR. And you can show its shape with a histogram or a box plot.
This capstone adds no new formulas. Instead it answers the question that trips people up on real data: given a particular dataset, which of those tools should you actually report? Reach for the wrong summary and you can paint a misleading picture without ever making an arithmetic mistake.
- Roughly symmetric, no big outliers — report the mean and the standard deviation. They use every value, so they carry the most information when nothing is pulling on the tails.
- Skewed, or has outliers — report the median and the IQR. They describe the bulk of the data without being yanked around by a few extreme points.
Why the shape decides: resistance
The reason is resistance — how much a summary moves when one value goes to an extreme.
The mean is a balance point, so it feels every value's exact size. In the mean vs. median lesson you saw a single dragged outlier make the mean lurch across the number line while the median barely twitched. The standard deviation is even more sensitive: it squares each distance from the mean, so one far-away point dominates it. Mean and SD are not resistant.
The median is just the middle value by position, and the IQR is the width of the middle 50%. Neither cares how far away the extreme points sit — only that they are above or below. Median and IQR are resistant. That is exactly why they are the honest choice when the data is lopsided: they report what a typical value looks like instead of a number inflated by a handful of extremes.
Read the shape straight off a box plot
A box plot is built entirely from resistant, position-based numbers — the five-number summary — so it is the perfect place to see shape and spot trouble. Two quick tells:
- Skew: if the median line sits off-center inside the box, or one whisker is much longer than the other, the data is skewed toward the long side.
- Outliers: any point drawn as a separate dot beyond the whiskers falls outside the 1.5×IQR fences — a flag that the mean and SD would be distorted.
In the tool below, switch the Data shape between symmetric, right-skewed, and with-an-outlier, and hit Regenerate a few times. Watch the box slide off-center for skewed data and a red dot break away when there is an outlier — the exact situations where you would abandon the mean and SD for the median and IQR.
Comparing groups: line up the boxes
Describing one dataset is half the job; often you need to compare several. Drawing side-by-side box plots on a shared axis is the cleanest way to do it, because each box shows a group's center, spread, and outliers in the same picture.
Scanning across them, you can read at a glance which group has the higher median (compare the middle lines), which is more spread out (compare box widths and whisker lengths), and which has unusual values (look for stray dots) — no new formula required. When groups are skewed or have outliers, comparing box plots is far more honest than comparing a single mean per group, which could hide a lopsided distribution behind one number.
- Check the shape: eight values sit between 180 and 285, and one lone value at 900 sits far out to the right. That is a right-skewed dataset with an outlier.
- Find the median: with nine sorted values the middle (5th) value is 230, so the typical home is around $230k.
- Find the mean: the nine prices sum to 2720, so the mean is 2720 / 9 ≈ 302, i.e. about $302k.
- Notice the gap: the mean (302) sits far above the median (230) — the single $900k estate is dragging it up. The mean is not resistant, so it overstates the typical home.
- Choose the resistant pair: report the median for center and the IQR for spread, and show a box plot so the $900k estate appears as an outlier dot rather than silently inflating the summary.
Check your understanding
- Choosing a summary is a judgment call about the data's shape, not a new formula.
- Roughly symmetric, outlier-free data: report the mean and standard deviation — they use every value.
- Skewed or outlier-prone data: report the median and IQR — they resist extreme values.
- A large gap between the mean and the median is a red flag for skew or outliers.
- Side-by-side box plots compare the center, spread, and outliers of several groups at once.
- Describe honestly: pick summaries that fit the shape and show the distribution when in doubt.