Descriptive Statistics Cheat Sheet

Complete guide to measures of central tendency, dispersion, and shape — mean, median, mode, variance, standard deviation, skewness, and kurtosis.

Last Updated: May 1, 2025

Measures of Central Tendency

ItemDescription
Mean (xbar = (1/n)*Sum(x_i))Arithmetic average — sensitive to outliers
MedianMiddle value (sorted) — robust to outliers, use for skewed data
ModeMost frequent value — useful for categorical data, can be multimodal
When Mean vs MedianMean for symmetric data; median for skewed data (income, house prices)
Trimmed MeanMean after removing top/bottom k% — compromise between mean and median
Weighted MeanSum(w_i * x_i) / Sum(w_i) — each value has a weight

Measures of Dispersion

ItemDescription
Variance: sigma^2 = (1/n)*Sum(x_i - mu)^2Average squared deviation from mean — hard to interpret directly
Sample Variance: s^2 = (1/(n-1))*Sum(x_i - xbar)^2Bessel's correction (n-1) for unbiased estimate from sample
Standard Deviation: sigma = sqrt(Variance)Original units — interpretable spread (avg distance from mean)
Range = Max - MinSimplest measure — very sensitive to outliers
IQR = Q3 - Q1Interquartile Range — middle 50%, robust to outliers
MAD = Median(|x_i - median|)Median Absolute Deviation — robust alternative to std dev

Measures of Shape

ItemDescription
Skewness = E[((X-mu)/sigma)^3]Asymmetry: >0 right-skewed (long right tail), <0 left-skewed
Positive Skew ExamplesIncome, house prices, response times, file sizes
Negative Skew ExamplesAge at death in developed countries, easy test scores
Kurtosis = E[((X-mu)/sigma)^4] - 3Tailedness: >0 heavier tails than normal (leptokurtic)
Excess KurtosisNormal distribution has kurtosis=3, so subtract 3 for excess
High KurtosisFinancial returns — more extreme events than normal predicts

Five-Number Summary

ItemDescription
Min, Q1, Median, Q3, MaxSummarizes distribution — the basis of box plots
Box Plot Outlier RuleQ1 - 1.5*IQR and Q3 + 1.5*IQR — points beyond are flagged
PercentilesValue below which p% of observations fall — Q1=P25, median=P50, Q3=P75
Pro Tip: Always report both a measure of center (mean or median) AND a measure of spread (std dev or IQR). One without the other is nearly meaningless.