Descriptive Statistics

Key Takeaways

  • Central tendency measures—mean, median, mode—locate the center; choose median when skew or outliers distort the mean.
  • Dispersion measures—range, variance, standard deviation, IQR—describe spread; σ is the backbone of SPC and capability.
  • Sample variance divides by n−1 (s²); population variance uses N (σ²). Know which formula your context requires.
  • Frequency and cumulative frequency distributions organize raw data into bins or values for histograms and percentile reading.
  • Green Belts compute and interpret descriptive stats on baseline data before inferential tests or control limits.
Last updated: July 2026

Descriptive Statistics

Quick Answer: Descriptive statistics summarize a dataset’s center and spread without yet testing hypotheses. Use mean, median, and mode for central tendency; range, variance, standard deviation, and IQR for dispersion; and frequency / cumulative frequency tables to see distribution shape. Green Belts calculate these on baseline CTQs before capability, SPC, or Analyze tests.

Role in DMAIC Measure

Before you claim “the process is broken” or “the pilot worked,” you need a clear numerical portrait of Y: Where is the center? How wide is the spread? Is the shape skewed? CSSGB BoK III.D.3 expects you to evaluate descriptive measures—select the right statistic and compute/interpret it correctly.

Descriptive methods describe the sample (or population dump) you have. Inferential methods (t-tests, confidence intervals) go further to statements about a larger population—covered more deeply with hypothesis testing, but always built on clean descriptive understanding.

Measures of Central Tendency

Mean (arithmetic average)

For a sample of n observations $x_1, \ldots, x_n$:

xˉ=i=1nxin\bar{x} = \frac{\sum_{i=1}^{n} x_i}{n}

Population mean μ uses all N population values. The mean uses every point—powerful but sensitive to outliers and skew.

Median

The median is the middle value when data are ordered. For odd n, it is the center point; for even n, the average of the two central values. The median is robust to extreme values.

Mode

The mode is the most frequent value (or bin). Datasets may be unimodal, bimodal, or have no unique mode. Useful for categorical/nominal data and for spotting multi-process mixtures (two peaks).

When to prefer which

SituationPrefer
Symmetric continuous data, focus on total/average performanceMean
Skewed cycle times, incomes, or outlier-prone measuresMedian (report mean too if stakeholders need it)
Most common category or discrete valueMode
Reporting for SPC centerlines on variables chartsMean (X-bar) with awareness of shape

Worked example — center: Five cycle times (minutes): 10, 12, 11, 13, 34.

  • Ordered: 10, 11, 12, 13, 34
  • Mean: $(10+12+11+13+34)/5 = 80/5 = \mathbf{16.0}$
  • Median: 12
  • Mode: none unique (all appear once)

The mean is pulled high by 34; the median better represents a “typical” ticket if 34 was a one-off system outage. Investigate the outlier—do not silently drop it without rules—but choose the summary that matches the question.

Measures of Dispersion

Range

R=xmaxxminR = x_{\max} - x_{\min}

Simple and used in X-bar/R charts, but based on only two points—volatile for large n.

Variance

Population variance:

σ2=i=1N(xiμ)2N\sigma^2 = \frac{\sum_{i=1}^{N}(x_i - \mu)^2}{N}

Sample variance (unbiased estimator used in almost all project work):

s2=i=1n(xixˉ)2n1s^2 = \frac{\sum_{i=1}^{n}(x_i - \bar{x})^2}{n-1}

The $n-1$ denominator (Bessel’s correction) accounts for using $\bar{x}$ instead of μ.

Standard deviation

σ=σ2,s=s2\sigma = \sqrt{\sigma^2}, \quad s = \sqrt{s^2}

Same units as the data—easier to interpret than variance. In a rough normal model, mean ± s covers about two-thirds of points; control charts and capability indices are built from σ estimates.

Interquartile range (IQR)

IQR=Q3Q1\mathrm{IQR} = Q_3 - Q_1

Spread of the middle 50%; robust to outliers. Box plots display IQR visually.

Coefficient of variation (awareness)

CV=sxˉ\mathrm{CV} = \frac{s}{\bar{x}} (often ×100%)

Compares relative spread across metrics with different units or means—use only with ratio-scale data and $\bar{x} > 0$.

Worked example — dispersion: Use 10, 12, 11, 13 (omit the outlier to show clean arithmetic; n = 4).

  • $\bar{x} = 11.5$
  • Deviations: −1.5, 0.5, −0.5, 1.5
  • Squared: 2.25, 0.25, 0.25, 2.25; sum = 5.0
  • $s^2 = 5.0 / (4-1) = \mathbf{1.667}$
  • $s = \sqrt{1.667} \approx \mathbf{1.29}$
  • Range = 13 − 10 = 3

If the 34-minute point returns to the set (n = 5, mean 16), s jumps dramatically—dispersion measures expose instability the mean alone hides.

Full five-point check (including 34):

  • Mean = 16
  • Squared deviations from 16: 36, 16, 25, 9, 324; sum = 410
  • $s^2 = 410/(5-1) = 102.5$; $s \approx \mathbf{10.12}$

Report both center and spread: “mean 16 min with s ≈ 10 min” warns the process is not a tight 16.

Frequency and Cumulative Frequency Distributions

A frequency distribution lists each value or class interval with its count (frequency). A relative frequency is count/n; a cumulative frequency adds counts from the lowest class upward (or downward for “more than” tables).

Why Green Belts use them:

  • Build histograms and see shape (symmetric, skewed, bimodal)
  • Read approximate percentiles and % below a spec from cumulative relative frequency
  • Communicate baseline without dumping raw lists to leadership

Worked example — discrete frequencies: Defect counts per batch over 20 batches:
0,1,0,2,1,0,1,3,1,0, 2,1,0,1,2,0,1,1,0,2

Count kFrequency fRelative fCumulative fCum. relative
070.3570.35
180.40150.75
240.20190.95
310.05201.00

Interpretation: 75% of batches have ≤1 defect; only 5% hit 3. Mode = 1; mean defect count = $(0·7+1·8+2·4+3·1)/20 = 18/20 = 0.90$.

Continuous data: form class intervals (bins)—e.g., cycle time 0–5, 5–10, 10–15, …—with consistent width when possible. Too few bins hide shape; too many create noisy spikes. Software defaults are a start; adjust with process knowledge.

Cumulative use case: From a cumulative relative frequency chart, estimate the fraction of product below USL even before formal capability indices—useful in early Measure storytelling (still verify normality assumptions later for % predictions).

Connecting Descriptives to Other Measure Tools

Descriptive insightNext step
Mean far from targetCenter the process; check bias in measurement
Large s vs. spec widthCapability risk; reduce variation
Median << meanRight skew; consider transformation or nonparametrics
Bimodal histogramMixture of streams—stratify before one σ
Cumulative % beyond USL highPrioritize project Y; quantify CoPQ

Descriptives also feed control chart constants and baseline DPMO calculations. Incomplete description leads to wrong chart scaling and false “improvements.”

Calculation Discipline for the Open-Book Exam

  1. Sort data before median and for easy min/max.
  2. State whether you use n−1 (sample) or N (population).
  3. Keep units on s and range; variance is squared units (minutes²).
  4. Show sum of squares steps when options are close numerically.
  5. Pair every mean with a spread measure in written conclusions.

Green Belt Mini-Workflow

  1. QC the data (prior section).
  2. Plot histogram or stem-and-leaf / ordered list for small n.
  3. Compute mean, median, mode as appropriate.
  4. Compute range, s (and IQR if skewed).
  5. Build frequency / cumulative tables for communication and percentile reads.
  6. Only then proceed to capability, control limits, or hypothesis tests.

Descriptive statistics turn a pile of Measure-phase numbers into a defensible baseline story: where the process sits, how much it wanders, and how mass piles up relative to requirements.

Test Your Knowledge

For the sample data 4, 6, 6, 8, 16, which statement is correct?

A
B
C
D
Test Your Knowledge

A Green Belt computes sample variance for n = 5 measurements. Which formula is appropriate?

A
B
C
D
Test Your Knowledge

From a frequency table, cumulative relative frequency at the bin “≤ 10 minutes” equals 0.80. What is the best interpretation?

A
B
C
D