How to Calculate a Five Number Summary in Excel?
Last Updated :
18 Jul, 2021
In statistics, the five-number summary is mostly used as it gives a rough idea about the dataset. It is basically a summary of the dataset describing some key features in statistics. The five key features are :
- Minimum value: It is the minimum value in the data set
- First Quartile, Q1: It is also known as the lower quartile where 25% of the scores fall below it.
- Median (middle value) or second quartile: It is basically the mid-value in the dataset.
- Third Quartile, Q3: It is also known as the Upper quartile in which 25% of the data is above it and the rest 75% falls below it.
- Maximum value: It is the maximum value in the dataset.
It is important to note that we can find the Five-number summary only for a single variable dataset. It is meaningless to calculate the Five-number summary for two variables data also known as bivariate.
These five number summaries give a concise inference about the distribution of the dataset. Using these quartiles we can find the Interquartile Range and create a Box Plot out of it. For more details refer Creating Box Plots in Excel.
In this article, we are going to discuss how to calculate the Five-number summary in Excel using a suitable example.
Implementation :
The following Excel in-built functions can be used to calculate the above quartiles.
QUARTILE(Array,quart) // Used in Excel 2007 version and lower
Array : Cell range
quart : The five quart values from 0 to 4
0- Minimum value
1- First Quartile (25 percent)
2- Median Value (50 percentile)
3- Third Quartile (75 percentile)
4- Maximum value
In the latest version of Excel, we use the function
QUARTILE.INC(Array,quart)
The parameters and quart values are the same as discussed above.
To calculate the minimum, maximum, and median values we can also use the following functions :
=MIN(Array) //to calculate minimum value
=MAX(Array) //to calculate maximum value
=MEDIAN(Array) //to calculate second quartile or the median
Example: Consider the dataset which consists of information about the BMI of 10 geeks.
DatasetCALCULATION:
1. Minimum and Maximum Value
It can either be calculated using the MIN, MAX functions or using the QUARTILE function with quart value as 0 for minimum and 4 for maximum.
The dataset is stored in column "A" of the worksheet and the observations are stored from cell A2 to A11.
So the array will start from A2 and end at A11.
Minimum BMI
Similarly, we can find the maximum value.
Maximum BMI
2. Median value or Second Quartile
The Excel function MEDIAN can be used or we can use the QUARTILE function with quart value as 2.
3. Quartiles Q1 and Q3
The function QUARTILE or QUARTILE.INC is used to calculate these quartile values with quart values 1 for Q1 and 3 for Q3.
Quartile 1
Quartile 3Summary
To calculate all the Five-number summary :
Quartile Values | Formula |
Minimum Value | =QUARTILE.INC(Cell_Range, 0) |
Q1 | =QUARTILE.INC(Cell_Range, 1) |
Median | =QUARTILE.INC(Cell_Range, 2) |
Q3 | =QUARTILE.INC(Cell_Range, 3) |
Maximum Value | =QUARTILE.INC(Cell_Range, 4) |
Five-Number Summary
Similar Reads
How to Calculate Five Number Summary in R?
In this article, we will discuss how to calculate five number summary in R programming language. Five number summary is also known as a boxplot. it will return five values that are : The minimum value present in the given dataThe first quartile value present in the given dataThe median  value presen
2 min read
How to Calculate SMAPE in Excel?
In statistics, we often use Forecasting Accuracy which denotes the closeness of a quantity to the actual value of that particular quantity. The actual value is also known as the true value. It basically denotes the degree of closeness or a verification process that is highly used by business profess
3 min read
How to Calculate Mean Squared Error in Excel?
Mean Squared Error is defined as the mean of the square of the difference between the actual values and the expected values.Where,O = Observed value,E = Expected Value,n = No. of observationsExample:Follow the below steps to evaluate the MSE in Excel:Step 1: Suppose we are given the data in form of
1 min read
How to Calculate Mean, Median and Mode in Excel
Understanding the concepts of mean, median and mode in Excel can grow your mathematics and Excel skills. Understanding how to calculate mean in Excel, work out mean on Excel, how to calculate median in Excel, find median in Excel, and calculate mode in Excel can revolutionize how you interpret data.
9 min read
How to Calculate Fleissâ Kappa in Excel?
Fleiss' Kappa is a method for estimating the level of understanding between at least three raters when the raters are relegating straight-out evaluations to a bunch of things. Fleiss' Kappa goes from 0 to 1 where: 0 shows no arrangement by any means among the raters.1 shows amazing between rater und
2 min read
How to Add a Calculated Field to a Pivot Table in Excel
A Calculated Field in Pivot Table allows you to perform custom calculations within your Excel Pivot Table, giving you more flexibility and deeper insights into your data. Whether you need to add a custom formula, modify existing calculations, or remove a field, this guide walks you through the essen
6 min read
How to calculate Sum and Average of numbers using formulas in MS Excel?
Everyday in school, offices, business sectors or any other field lots of information are there that are required to store for future use. For anyone, it is very difficult to remember that information for a long time. Earlier data and information are stored in a form of a register, file, or by paperw
4 min read
How to Calculate the Midrange in Excel?
MS Excel is a spreadsheet developed by the company Microsoft. Excel provides various kinds of functions and we can insert the data in form of rows and columns and perform operations on the data and yield the results we desired. The Midrange of the dataset in other terms can be specified as average o
2 min read
How to Sort by Number in Excel?
Excel is the world where you can organise your data. Organising data is a very big task especially when you are doing it on a large scale. In Excel, one can have around 17 million cells in one worksheet. So at this point, arranging the data in a systematic order is very important. If you are curious
2 min read
How to Calculate Mean Absolute Error in Excel?
Mean absolute error is the measure of error between the observed and the expected values in a given data set. Where, O stands for Observed values,E stands for Expected values,n stands for total no. of observations. Now let us understand it with the help of an example. Example: Follow the below steps
1 min read