CHAPTER 01 · TOPIC 03
Descriptive Statistics
Summarize center, variability, skewness, and kurtosis with measures suited to the data distribution.
On this page
Descriptive statistics organize, summarize, and display data. They help us understand what a sample contains, where its center lies, how widely it varies, whether its distribution is symmetric, and whether unusual observations are present.
Start with the data type#
| Data type | Typical summaries | Typical displays |
| Categorical | Counts and proportions | Frequency table, bar chart |
| Numerical | Mean and SD, or median and IQR | Histogram, box plot, density plot |
Central tendency#
The mode is the most frequent value and may be used for categorical or numerical data. The median is the middle ordered value and is resistant to extreme observations. The arithmetic mean uses every observation and is highly useful for inference, but is more sensitive to outliers.
Trimmed and geometric means#
A trimmed mean removes a fixed proportion from both tails before averaging, providing a compromise between the mean and median. The geometric mean is appropriate for positive multiplicative quantities such as growth factors, ratios, and some log-normal measurements.
A logarithm compresses large positive values and may make a right-skewed distribution more symmetric. Ordinary log transformation and the geometric mean are not directly defined when observations include zero or negative values.
Variability: how different are the observations?#
The range uses only the extremes and is sensitive to outliers. The IQR describes the middle 50% of observations and pairs naturally with the median.
Variance and standard deviation#
Variance averages squared distances from the mean. The standard deviation takes the square root and therefore returns to the original measurement unit. The n−1 denominator in sample variance reflects degrees of freedom and unbiased estimation.
Coefficient of variation#
The CV expresses standard deviation relative to the mean. It is useful for positive ratio-scale measurements with meaningful zeroes, but is unstable or difficult to interpret when the mean is near zero or negative.
Distribution shape: skewness and kurtosis#
Skewness describes asymmetry. Its sign follows the longer tail: a long left tail gives negative skewness, while a long right tail gives positive skewness.
The third power preserves direction, allowing the sign to distinguish left from right skew.
Kurtosis is better understood as sensitivity to tail weight and extreme observations than simply as the sharpness of a peak.
Normal-distribution kurtosis β₂ is 3 and excess kurtosis γ₂ is 0. Software may report either definition, so always verify the convention.
A complete descriptive report#
- Identify the data type and measurement scale
- Report counts and proportions for categorical variables
- Report both center and variability for numerical variables
- Inspect plots and outliers before choosing mean/SD or median/IQR
- Use shape statistics and graphs when helpful, without judging a distribution from one number alone