故事 · 两个平均分相同的班 Story · Two classes with identical averages
期末成绩出来了,A 班和 B 班的平均分都是 80,校长看一眼报表,觉得两个班水平差不多。 可班主任心里清楚:A 班的孩子基本都考 78、80、82 —— 整整齐齐,稳得很; B 班却是几个学霸冲到 100、几个学困生掉到 50,上蹿下跳,没个准头。 同样的「平均 80」,背后是完全不同的两群人。光有集中趋势(平均)远远不够 —— 你必须知道数据有多散,才知道这个平均到底可不可靠。这就是「离散度量」要回答的问题。 Final grades come in. The principal glances at the report — Class A and Class B both average 80 — and assumes the two cohorts are equivalent. But the homeroom teachers know better. Class A's kids scored 78, 80, 82 across the board — tight, uniform, predictable. Class B had a few top students hitting 100 and a few struggling at 50 — volatile, no rhythm at all. Same "average 80", two very different populations. Central tendency (the mean) alone is not enough — you have to know how scattered the data is before you can trust that mean. That's exactly what dispersion measures answer.

1 两班成绩点 · 平均同、波动异 Score Dots · Same Mean, Different Jitter

B 班散得多

2 「有多散」的四种量法(A 班 vs B 班) Four ways to measure "how scattered" (Class A vs Class B)

极差 Range = 最高 − 最低。最粗暴,只看两个极端,一个怪分就能把它撑大。 Range = max − min. The crudest measure — it only sees the two extremes, and a single outlier blows it up.
IQR 四分位距 = Q3 − Q1。中间 50% 的跨度,抗异常值,箱线图就用它。 IQR (interquartile range) = Q3 − Q1. The middle 50% spread — robust to outliers, the backbone of every boxplot.
标准差 σ = 每个点平均偏离均值多远。最常用,正态下 ±1σ 覆盖约 68%。 Standard deviation σ = the typical distance from the mean. The workhorse — under normality, ±1σ covers about 68%.
变异系数 CV = σ/均值。无量纲,用来比「身高的散」和「体重的散」谁更散。 Coefficient of variation (CV) = σ / mean. Unit-free, so you can compare the spread of heights against the spread of weights apples-to-apples.

现实里,离散度量决定一切 In the Real World, Dispersion Decides Everything

过程一致性:两条产线均值合格,σ 小的那条良率更高、退货更少。六西格玛的核心目标,就是把过程的 σ 压到极小。 Process consistency: two production lines hit the same target mean, but the one with smaller σ ships higher yield and fewer returns. The whole point of Six Sigma is to shrink σ as much as possible.
稳定性承诺:交付平均 10 天,A 供应商稳在 9~11 天、B 在 2~30 天乱跳;能给客户硬承诺的只有 A,差别全在离散。 Reliability commitments: average lead time 10 days. Supplier A holds 9–11 days steady; Supplier B bounces between 2 and 30. Only A can sign a firm SLA — the difference is all in the dispersion.
极差 vs 标准差 vs IQR:小样本/现场快速判断用极差;常规分析用标准差;有异常值或偏态用 IQR,三者各有适用场景。 Range vs σ vs IQR: range for small samples or quick shop-floor checks; standard deviation for routine analysis; IQR when you have outliers or skew. Each tool has its niche.
投资与风险:两只基金年均收益都是 8%,波动率(标准差)大的那只风险更高;金融里的「风险」本质就是收益的离散度。 Investment risk: two funds both return 8% annually, but the one with higher volatility (standard deviation) is riskier. In finance, "risk" literally means the dispersion of returns.
一句话In One Line
均值告诉你「中心在哪」,离散告诉你「能不能信这个中心」。两个团队平均交付都是 10 天, 一个稳定在 9~11 天、一个在 2~30 天乱跳 —— 平均一样,但后者根本没法承诺客户。 六西格玛的全部努力,本质就是把 σ 压小:让 B 班变成 A 班,让产线波动收窄,让每一次结果都可预测。 所以任何报告,集中趋势和离散度量必须成对出现,缺一不可。 The mean tells you where the center is; dispersion tells you whether you can trust that center. Two teams both deliver in 10 days on average — one steady at 9–11, the other bouncing 2–30. Identical mean, but only the first can promise anything to a customer. Every Six Sigma effort, at its core, is about shrinking σ: turn Class B into Class A, narrow the line's jitter, make every outcome predictable. So in any report, central tendency and dispersion must come as a pair — never one without the other.
常见误用Common Mistakes
只报均值不报离散(「平均分 80」)→ A 班 B 班看起来一样。均值必配 σ 或 IQR。 Reporting only the mean, no dispersion ("average 80") → Class A and Class B look identical. Always pair the mean with σ or IQR.
有异常值还用极差/标准差 → 被一个怪点绑架。偏态/异常多时改用 IQR。 Using range or σ when outliers are present → a single freak value hijacks the metric. Switch to IQR for skewed or outlier-heavy data.
跨量纲比离散(比身高 cm 和工资元谁更散)。用无量纲的 CV。 Comparing spread across different units (heights in cm vs salaries in dollars). Use the unit-free coefficient of variation.

离散趋势