Compute the complete five-number summary: minimum, Q1, median, Q3, and maximum.Visualize your data distribution with an interactive box-and-whisker plot, detect outliers,and explore additional statistics like IQR, mean, and standard deviation.
The five-number summary is a concise yet powerful descriptive statistics tool that summarizes a data set using five key values: the minimum, the first quartile (Q1), the median (Q2), the third quartile (Q3), and the maximum. Together, these five numbers provide a complete picture of the data's center, spread, and skewness, making it one of the most widely used tools in exploratory data analysis (EDA).
Five-Number Summary = { min, Q₁, median, Q₃, max }
These five values divide the data into four equal parts, each containing approximately 25% of the observations.
The five-number summary is foundational to statistical thinking and data literacy. It enables you to:
The American Statistical Association (ASA) and the National Council of Teachers of Mathematics (NCTM) both emphasize the five-number summary as a core component of statistical education, often introduced alongside box plots in middle and high school curricula.
Given a data set of n observations, the five-number summary is obtained after sorting the data in ascending order. The computation follows these steps:
This calculator uses Tukey's hinges method (median of the lower and upper halves). For even-sized halves,
the median is taken as the average of the two middle values, ensuring a deterministic and unambiguous result.
This approach is consistent with the methodology taught in most introductory statistics courses and aligns
with R's quantile(type=2) and Python's numpy.percentile(interpolation='midpoint') for quartiles. For a detailed comparison of quartile methods, see the Wikipedia article on quartiles.
The box-and-whisker plot (or simply box plot) is the graphical representation of the five-number summary. It was invented by the renowned statistician John Tukey in the 1970s as a tool for exploratory data analysis.
The box plot displays:
The box plot is exceptionally useful for comparing distributions across groups, identifying skewness, and detecting outliers. It is a standard visualization in fields ranging from quality control (Six Sigma) to finance (risk analysis) and medicine (clinical trial data exploration).
A manufacturing plant produces metal rods with a target diameter of 10.00 mm.
Daily measurements are collected: 9.95, 9.97, 9.98, 10.00, 10.01, 10.02, 10.03, 10.05, 10.08, 10.10.
Using the five-number summary:
All measurements fall within the fences, indicating the process is in statistical control. The median is close to the target, and the spread is narrow — the process is performing well. The quality engineer uses this summary daily to monitor process stability and detect drift early.
A school district analyzes test scores from 100 students to evaluate a new teaching method. The five-number summary reveals:
The district uses this summary to identify students in the lower quartile for targeted intervention and to communicate overall performance to the school board. The box plot provides a clear, intuitive snapshot that non‑statisticians can easily understand.
To ensure absolute reliability, this calculator has been rigorously validated against hundreds of
synthetic and real-world datasets. The results have been cross-verified with R's built-in summary() and quantile(type=2) functions, Python's numpy.percentile(interpolation='midpoint'), and the core statistics module in SciPy.
In all test cases — including small samples, large datasets, even and odd counts, and heavily skewed
distributions — the computed five-number summary and outlier classifications matched the reference
outputs exactly. This makes the tool a trustworthy resource for academic research, professional data
analysis, and quality control applications.
In addition to the five-number summary, this calculator also provides:
These additional statistics complement the five-number summary, providing both robust and classical perspectives on your data.