Imagine a clinic where the mean HbA1c is 7.5% โ looks controlled. But half the patients are at 5.5% (great) and half at 9.5% (danger). The average hid the problem.
๐ The center is only half the story. You must also measure the spread.
๐ Central Tendency โ Finding the Center
Mean (Average)
Mean = ฮฃx / n
Sum all values, divide by count. Uses every data point โ powerful but easily pulled by outliers.
โ Use when: data is Normal โ ๏ธ Sensitive to outliers
Median (Middle Value)
Middle value when ordered
The 50th percentile. Not affected by extreme values. Represents the "typical" patient.
โ Use when: data is Skewed
Mode (Most Frequent)
Value with highest frequency
The only measure that works for categorical data (blood type, gender).
โ Use when: data is Categorical
๐ Distribution Shapes
The relationship between mean and median reveals the shape:
Normal (Symmetric)
Mean = Median = Mode
Bell-shaped. All measures align at center. Example: height in a population.
Positive Skew (Right Tail)
Mode < Median < Mean
Mean pulled right by high values. Example: income, BMI, length of stay.
Negative Skew (Left Tail)
Mean < Median < Mode
Mean pulled left by low values. Example: easy exam scores.
๐ก Shortcut: Skew is named for the TAIL direction, not the peak. If mean โ median โ data is skewed.
๐ Dispersion โ Measuring the Spread
Range
Range = Max โ Min
Quick snapshot but uses only 2 values. One outlier ruins it.
Use for: quick glance only
IQR (Interquartile Range)
IQR = Q3 โ Q1
Spread of the middle 50%. Robust to outliers โ like the median.
โ Use when: data is Skewed
Standard Deviation (SD)
SD = โ[ฮฃ(xโxฬ)ยฒ / (nโ1)]
Average distance from the mean. Foundation of the 68-95-99.7 rule.
โ Use when: data is Normal
Coefficient of Variation (CV)
CV = (SD / Mean) ร 100%
Compares variability across different units. Essential for lab quality control.
Use for: comparing different measurements
๐ The Golden Pairing Rules
These measures are always reported together. Mixing them is a mistake.
Mean + SD
โ For Normal Data
Median + IQR
โ For Skewed Data
Mean + IQR
โ Wrong combination
Median + SD
โ Wrong combination
๐ The 68-95-99.7 Rule
For normally distributed data:
68%
of data falls within Mean ยฑ 1 SD โ the typical range
95%
of data falls within Mean ยฑ 2 SD โ the "normal" reference range
99.7%
of data falls within Mean ยฑ 3 SD โ beyond this โ investigate
Example: Mean BP = 130 mmHg, SD = 15. Normal range (ยฑ2 SD) = 100โ160 mmHg.
๐ Detecting Outliers
IQR Method (Box Plot)
Below Q1 โ 1.5รIQR Above Q3 + 1.5รIQR
Values outside the fences are flagged as outliers on box plots.
SD Method
Beyond Mean ยฑ 3 SD
Only 0.3% of normal data falls here. Very rare = likely unusual.
โ ๏ธ Never delete outliers without investigation!
A cholesterol of 15 mmol/L could be a lab error OR familial hypercholesterolemia โ a real disease. Investigate first. Always.
๐ณ Decision Tree: Which Measure Should I Use?
โ Is your data categorical (blood type, gender, diagnosis)?
โ Use Mode. It's the only measure that works for categories.
โ Is your data numeric but skewed or has outliers?
โ Use Median + IQR. They resist extreme values.
โ Is your data numeric and normally distributed?
โ Use Mean + SD. Maximum information, mathematically powerful.
๐งฎ Step-by-Step Practice
Work through these problems before checking answers. Grab a pen!