Reading Data: The Five-Number Summary, Skewness, and Boxplots

Before you can analyze a dataset, you have to understand its shape, where the values sit, how spread out they are, and whether they lean to one side. Three closely related tools make that easy. The five-number summary describes the distribution in just five values, skewness measures its asymmetry, and the boxplot turns both into a single, readable picture.

The Five-Number Summary

The five-number summary (also called the five-point summary) captures a dataset’s distribution with five values. The minimum is the smallest value, marking the lower bound and helping flag outliers or data-entry errors. The first quartile (Q1), or 25th percentile, separates the lowest 25 percent of the data from the rest and describes the spread of the lower portion. The median (Q2), or 50th percentile, is the middle value that splits the data in half (the average of the two middle values when there is an even count); as a measure of central tendency it is less sensitive to outliers than the mean. The third quartile (Q3), or 75th percentile, marks where the top 25 percent begins and describes the spread of the upper portion. And the maximum is the largest value, the upper bound and another place outliers reveal themselves. Together these five numbers give you the range, the center, and the dispersion at a glance.

Skewness

Skewness measures how asymmetric a distribution is. One common formula is:

Skewness = (3 * (Mean - Median)) / Standard Deviation

A skewness near zero means the distribution is roughly symmetric, with the mean, median, and mode close together and data spread evenly around the center. A skewness greater than zero means the distribution is positively skewed: the mean sits above the median and the tail stretches to the right, with most values concentrated in the lower range. A skewness below zero means it is negatively skewed: the mean falls below the median and the tail stretches to the left, with most values concentrated in the upper range. Knowing the direction and degree of skew tells you whether to trust the mean or lean on the median, and warns you about long tails.

The Boxplot

A boxplot, or box-and-whisker plot, is the visual companion to all of this. It draws the five-number summary directly: a line inside the box marks the median, the box’s lower and upper edges mark Q1 and Q3, and the distance between them is the interquartile range (IQR), the middle 50 percent of the data and a clean measure of spread. Two whiskers extend from the box, typically to the furthest values within 1.5 times the IQR, and any points beyond them are plotted individually as outliers, signaling extreme or unusual observations.

Reading one is quick. If the median line sits closer to one edge of the box, the data is skewed in that direction. A wide box means high variability, a narrow box means low variability. Long whiskers indicate a broad range, short ones a compact dataset, and stray points beyond the whiskers flag the outliers worth investigating.

Putting It Together

The five-number summary gives you the numbers, skewness tells you which way the distribution leans, and the boxplot shows all of it in one frame. Used together, they let you size up a dataset’s center, spread, symmetry, and outliers in seconds, the foundation for any more serious analysis and for making informed decisions from data.