# Box Plot

**Category:** charts  
**Short Description:** A standardized way of displaying data distribution based on quartiles.  
**Last Updated:** 2026-05-30T00:00:00Z

## Definition

Box plots (also known as box-and-whisker plots) display the distribution of numerical data through quartiles. The box shows the interquartile range (IQR) with a line for the median, while whiskers extend to show the rest of the distribution, excluding outliers.

## Examples

- Distribution comparison between groups A and B

## FAQs

### What is a box plot?

A box plot (or box-and-whisker plot) summarizes a distribution using five numbers: the median (line in the box), the first and third quartiles (the box edges, spanning the middle 50% of values), and whiskers extending to the range of typical values, with points beyond drawn as outliers. It compresses a whole distribution into a compact shape, which is why it's the standard for comparing many groups side by side.

### How do I read a box plot?

The line inside the box is the median (the typical value). The box spans the interquartile range (IQR) — the middle 50% of the data — so a tall box means high variability. Each whisker extends to the farthest data point that still falls within 1.5× the IQR of its quartile, so whiskers stop at actual data points rather than at a fixed distance, and any points beyond them are drawn individually as outliers. A median sitting off-center in the box, or one whisker much longer than the other, signals skew.

### When should I use a box plot instead of a histogram?

Use a box plot when comparing the distributions of several groups at once — its compactness lets you line up many side by side and instantly compare medians, spread, and outliers. Use a histogram to understand the detailed shape of a single distribution, since a box plot can hide important features like bimodality (two peaks look the same as one in a box plot).

### What do outliers in a box plot mean?

The dots beyond the whiskers are values that fall outside the expected range (typically more than 1.5× the IQR from the quartiles). They may be genuine extreme cases worth investigating, data-entry errors, or simply the natural tail of a skewed distribution. A box plot flags them for attention but doesn't judge them — always look at why they're there before excluding them.

### What does a box plot hide?

Its strength — summarizing to five numbers — is also its blind spot: it can't show the shape within the box. Two very different distributions (one with a single peak, one with two) can produce identical box plots. When the detailed shape matters, overlay the raw points (a strip or jitter plot), use a violin plot, or pair the box plot with a histogram.

## Related Terms

### Alternatives

- **[Histogram](/resources/glossary/charts/histogram)**: Shows frequency distribution of continuous data using bins
- **[Density Plot](/resources/glossary/charts/density-plot)**: Shows smooth probability density of data distribution
