Five-number summary

Summary

The five-number summary is a set of descriptive statistics that provides information about a dataset. It consists of the five most important sample percentiles:

  1. the sample minimum (smallest observation)
  2. the lower quartile or first quartile
  3. the median (the middle value)
  4. the upper quartile or third quartile
  5. the sample maximum (largest observation)

In addition to the median of a single set of data there are two related statistics called the upper and lower quartiles. If data are placed in order, then the lower quartile is central to the lower half of the data and the upper quartile is central to the upper half of the data. These quartiles are used to calculate the interquartile range, which helps to describe the spread of the data, and determine whether or not any data points are outliers.

In order for these statistics to exist, the observations must be from a univariate variable that can be measured on an ordinal, interval or ratio scale.

Use and representation edit

The five-number summary provides a concise summary of the distribution of the observations. Reporting five numbers avoids the need to decide on the most appropriate summary statistic. The five-number summary gives information about the location (from the median), spread (from the quartiles) and range (from the sample minimum and maximum) of the observations. Since it reports order statistics (rather than, say, the mean) the five-number summary is appropriate for ordinal measurements, as well as interval and ratio measurements.

It is possible to quickly compare several sets of observations by comparing their five-number summaries, which can be represented graphically using a boxplot.

In addition to the points themselves, many L-estimators can be computed from the five-number summary, including interquartile range, midhinge, range, mid-range, and trimean.

The five-number summary is sometimes represented as in the following table:

median
1st quartile 3rd quartile
Minimum Maximum

Example edit

This example calculates the five-number summary for the following set of observations: 0, 0, 1, 2, 63, 61, 27, 13. These are the number of moons of each planet in the Solar System.

It helps to put the observations in ascending order: 0, 0, 1, 2, 13, 27, 61, 63. There are eight observations, so the median is the mean of the two middle numbers, (2 + 13)/2 = 7.5. Splitting the observations either side of the median gives two groups of four observations. The median of the first group is the lower or first quartile, and is equal to (0 + 1)/2 = 0.5. The median of the second group is the upper or third quartile, and is equal to (27 + 61)/2 = 44. The smallest and largest observations are 0 and 63.

So the five-number summary would be 0, 0.5, 7.5, 44, 63.

Example in R edit

It is possible to calculate the five-number summary in the R programming language using the fivenum function. The summary function, when applied to a vector, displays the five-number summary together with the mean (which is not itself a part of the five-number summary). The fivenum uses a different method to calculate percentiles than the summary function.

> moons <- c(0, 0, 1, 2, 63, 61, 27, 13)
> fivenum(moons)
[1]  0.0  0.5  7.5 44.0 63.0
> summary(moons)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   0.00    0.75    7.50   20.88   35.50   63.00

Example in Python edit

This python example uses the percentile function from the numerical library numpy and works in Python 2 and 3.

import numpy as np

def fivenum(data):
    """Five-number summary."""
    return np.percentile(data, [0, 25, 50, 75, 100], method="midpoint")
>>> moons = [0, 0, 1, 2, 63, 61, 27, 13]
>>> print(fivenum(moons))
[  0.    0.5   7.5  44.   63. ]

Example in SAS edit

You can use PROC UNIVARIATE in SAS to get the five number summary:

data fivenum;
input x @@;
datalines;
1 2 3 4 20 202 392 4 38 20
;
run;

ods select Quantiles;
proc univariate data = fivenum;
 output out = fivenums min = min Q1 = Q1 Q2 = median Q3 = Q3 max = max;
run;

proc print data = fivenums;
run;

Example in Stata edit

 
A five number summary of a distribution of data.
input byte y
0 
0 
1 
2 
63 
61 
27 
13
end 
list

tabstat y, statistics (min q max)

See also edit

References edit

  • Hoaglin, David C.; Mosteller, Frederick; Tukey, John W., eds. (21 December 1982). Understanding Robust and Exploratory Data Analysis. Wiley Series in Probability and Statistics (1st ed.). Wiley. ISBN 978-0471097778. LCCN 82008528. OCLC 473252998. OL 3488838M – via Internet Archive.
  • Greenwood, David; Woolley, Sara; Goodman, Jenny; Vaughan, Jennifer; Palmer, Stuart (8 November 2019). "Chapter 9: Statistics". Essential Mathematics for the Australian Curriculum Year 10 (3rd ed.). Cambridge University Press. ISBN 978-1108773461. OCLC 1231440374. OL 33037157M.