2.5 Measures of Location and Outliers 

Let’s keep working through the acronym SOCS for describing key aspects of our data, this time focusing on outliers.

  • Shape
  • Outliers
  • Center
  • Spread

Measures of location are used to quantify where an observation stands in relation to the rest of the distribution. They also provide the building blocks to formally identify outliers. Common measures of location are quartiles and percentiles. Quartiles divide ordered data into quarters, while percentiles divide ordered data into hundredths.

Percentiles

Percentiles are useful for comparing values. For this reason, universities and colleges use percentiles extensively, such as when they use SAT results to determine a minimum test score that will be an acceptance factor. For example, suppose Duke accepts SAT scores at or above the 75th percentile. That translates into a score of at least 1220.

To score in the 90th percentile of an exam does not necessarily mean that you received 90% on a test. It means that 90% of test scores are the same or less than your score and that 10% of test scores are the same or greater than your test score.

Percentiles are mostly used with very large populations. Therefore, it would be acceptable to say that 90% of the test scores are less (and not the same or less) than your score, because removing one particular data value is not significant.

There are two inverse ways you may work with percentiles: finding the kth percentile of a distribution or finding the percentile of a given observation.

Finding the kth Percentile of a Distribution

Sometimes you may want to find the “kth” percentile of a distribution. For instance, what would a student have to score on the SAT to be in the 90th percentile?

If you were to do a little research, you would find several processes for calculating the kth percentile. Here is one of them.

k = the kth percentile. It may or may not be part of the data.

i = the index (ranking or position of a data value)

n = the total number of data

  • Order the data from smallest to largest.
  • Calculate i = \frac{k}{100}(n+1).
  • If i is an integer, then the kth percentile is the data value in the ith position in the ordered set of data.
  • If i is not an integer, then round i up and round i down to the nearest integers. Average the two data values in these two positions in the ordered dataset. This is easier to understand in an example.

NOTE: You can calculate percentiles using calculators and computers. There are a variety of online calculators.

Example

Twenty-nine ages of winners of the Academy Award for Best Actor are listed below in order from smallest to largest.

18, 21, 22, 25, 26, 27, 29, 30, 31, 33, 36, 37, 41, 42, 47, 52, 55, 57, 58, 62, 64, 67, 69, 71, 72, 73, 74, 76, 77

Find the 70th percentile.

Solution

k = 70, i = the index, and n = 29

i = \frac{k}{100} (n+1) = \frac{70}{100} (29+1) = 21. Twenty-one is an integer, and the data value in the 21st position in the ordered data set is 64. The 70th percentile is 64 years.

 

Find the 83rd percentile.

Solution

k = 83rd percentile, i = the index, and n = 29
i = \frac{k}{100} (n+1) = \frac{83}{100} (29+1) = 24.9, which is not an integer. Round this number down to 24 and up to 25. The age in the 24th position is 71 and the age in the 25th position is 72. Average 71 and 72. The 83rd percentile is 71.5 years.

 

Your Turn!

Twenty-nine ages of winners of the Academy Award for Best Actor are listed below in order from smallest to largest.

18, 21, 22, 25, 26, 27, 29, 30, 31, 33, 36, 37, 41, 42, 47, 52, 55, 57, 58, 62, 64, 67, 69, 71, 72, 73, 74, 76, 77

Calculate the 20th percentile and the 55th percentile.

Finding the Percentile of a Value in a Dataset

The process for finding the corresponding percentile of a given observation is as follows:

x = the number of data values counting from the bottom of the data list up to (but not including) the data value for which you want to find the percentile

y = the number of data values equal to the data value (repeated values) for which you want to find the percentile

n = the total number of data

  • Order the data from smallest to largest.
  • Calculate \frac{x+0.5y}{n}(100). Then round to the nearest integer.

Example

Twenty-nine ages of winners of the Academy Award for Best Actor are listed below in order from smallest to largest.

18, 21, 22, 25, 26, 27, 29, 30, 31, 33, 36, 37, 41, 42, 47, 52, 55, 57, 58, 62, 64, 67, 69, 71, 72, 73, 74, 76, 77

Find the percentile for 58.

Solution

Counting from the bottom of the list, there are 18 data values less than 58. There is one value of 58.

x = 18 and y = 1.

\frac{x+0.5y}{n} (100) = \frac{18+0.5(1)}{29} (100) = 63.8. 58 is the 64th percentile.

 

Find the percentile for 25.

Solution

x = 3 and y = 1.

\frac{x+0.5y}{n} (100) = \frac{3+0.5(1)}{29} (100) = 12.07. 25 is the 12th percentile.

Your Turn!

Twenty-nine ages of winners of the Academy Award for Best Actor are listed below in order from smallest to largest.

18, 21, 22, 25, 26, 27, 29, 30, 31, 33, 36, 37, 41, 42, 47, 52, 55, 57, 58, 62, 64, 67, 69, 71, 72, 73, 74, 76, 77

Find the percentiles for 47 and 31.

Quartiles

Quartiles also deal with an ordered dataset and are really just special percentiles. The first quartile, Q1, is the same as the 25th percentile. The second quartile, Q2, is the same as the 50th percentile and is also called the median. The third quartile, Q3, is the same as the 75th percentile.

The Median

The median is a number that measures the “halfway point” of the data. You can think of the median as the “middle value,” but it does not actually have to be one of the observed values. It is a number that separates ordered data into halves. Half the values are the same number or smaller than the median, and half the values are the same number or larger. For example, consider the following data:

1, 11.5, 6, 7.2, 4, 8, 9, 10, 6.8, 8.3, 2, 2, 10, 1

Ordered from smallest to largest:

1, 1, 2, 2, 4, 6, 6.8, 7.2, 8, 8.3, 9, 10, 10, 11.5

Since there are 14 observations, the median is between the seventh value, 6.8, and the eighth value, 7.2. To find the median, we must interpolate, or split the difference. In this case we simply add both values together and divide by two.

\frac{6.8+7.2}{2} = 7

The median is 7. Half of the values are smaller than 7, and half of the values are larger than 7.

Depending on the context, the median could be both a measure of location and/or center. Future sections will further discuss the median and using it as a measure of center.

Finding Quartiles

Quartiles can be found by treating them either as a percentile or in a similar fashion to the median. They may or may not be part of the data. To find the quartiles, first find the median, or second quartile. The first quartile, Q1, can be treated as the middle value (or median) of the lower half of the data. The third quartile, Q3, can be treated as the middle value (or median) of the upper half of the data. To get the idea, consider the same dataset as above, where the median is 7.

1, 1, 2, 2, 4, 6, 6.8, 7.2, 8, 8.3, 9, 10, 10, 11.5

The median divides the dataset into two halves, with 7 observations in each half (pictured in different colors below). The first quartile is 2 and the third quartile is 9.

1, 1, 2, 2, 4, 6, 6.8, 7.2, 8, 8.3, 9, 10, 10, 11.5

In this example there are an even number of observations and we had to interpolate the median. This divided our dataset into two halves, with an odd amount of numbers in each half, meaning the quartiles were part of the data set. In other cases, if the median divides your dataset into two even halves you must interpolate the quartiles. Rather than splitting the difference, it is often more appropriate to treat Q1 and Q3 as the 25th and 75th percentiles, respectively.

Interpreting Percentiles, Quartiles, and Median

A percentile indicates the relative standing of a data value when data are sorted into numerical order from smallest to largest. Percentages of data values are less than or equal to the pth percentile. For example, 15% of data values are less than or equal to the 15th percentile.

  • Low percentiles always correspond to lower data values.
  • High percentiles always correspond to higher data values.

A percentile may or may not correspond to a value judgment about whether it is “good” or “bad.” The interpretation of whether a certain percentile is “good” or “bad” depends on the context of the situation to which the data applies. In some situations, a low percentile would be considered “good”; in other contexts, a high percentile might be considered “good.” In many situations, there is no value judgment that applies.

Understanding how to interpret percentiles properly is important not only when describing data but also when calculating probabilities, like those you’ll find in later chapters of this text.

NOTE: 

When writing the interpretation of a percentile in the context of the given data, the sentence should contain the following information.

  • Information about the context of the situation being considered
  • The data value (value of the variable) that represents the percentile
  • The percent of individuals or items with data values below the percentile
  • The percent of individuals or items with data values above the percentile

Example

On a timed math test, the first quartile for time taken to finish the exam was 35 minutes. Interpret the first quartile in the context of this situation.

  • Twenty-five percent of students finished the exam in 35 minutes or less.
  • Seventy-five percent of students finished the exam in 35 minutes or more.
  • A low percentile could be considered good, as it is desirable to finish a timed exam more quickly (especially since you might not finish if you take too long).

    Your Turn!

    For the 100-meter dash, the third quartile for time taken to finish the race was 11.5 seconds. Interpret the third quartile in the context of the situation.

    Five-Number Summary

    The five-number summary is a simple, easy way to quickly summarize a dataset. It is also the first step to identifying any outliers. It consists of:

    1. Minimum
    2. Q1
    3. Median
    4. Q3
    5. Maximum

    Interquartile Range

    The interquartile range (IQR) is the difference between the third quartile (Q3) and the first quartile (Q1).

    IQR = Q3Q1

    The IQR is also helpful to determine potential outliers and can be used as a measure of spread.

    Example

    Sharpe Middle School is applying for a grant that will be used to add fitness equipment to the gym. The principal surveyed 15 anonymous students to determine how many minutes a day the students spend exercising. The results from the 15 anonymous students are as follows.

    0, 40, 60, 30, 60, 10, 45, 30, 300, 90, 30, 120, 60, 0, 20

    The five-number summary for this dataset would look like:

    • Min = 0
    • Q1 = 20
    • Med = 40
    • Q3 = 60
    • Max = 300

    If you were the principal, would you be justified in purchasing new fitness equipment? Since 75% of the students exercise for 60 minutes or less daily, and since the IQR is 40 minutes (60 – 20 = 40), we know that half of the students surveyed exercise between 20 minutes and 60 minutes daily. This seems a reasonable amount of time spent exercising, so the principal would be justified in purchasing the new equipment.

    Fence Rule

    Although points may often look like outliers on a graph, we establish the upper fence (UF) and lower fence (LF) to numerically decide if a value is an outlier. The lower fence is 1.5 times the IQR subtracted from the first quartile (LF = Q1 – 1.5*IQR), while the upper fence is 1.5 times the IQR added to the third quartile (UF = Q3 + 1.5*IQR). If a value falls outside of these fences—i.e., less than the lower fence or greater than the upper fence—we will flag it as an outlier.

    A potential outlier is a data point that is significantly different from the other data points. These special data points may be errors or some kind of abnormality, or they may be a key to understanding the data. Potential outliers always require further investigation.

    Example

    [Continued from Sharpe Middle School example above]

    The principal needs to be careful. The value 300 appears to be a potential outlier.

    Q3 + 1.5(IQR) = 60 + (1.5)(40) = 120

    The value 300 is greater than 120, so it is a potential outlier. If we delete it and generate the five-number summary, we get the following values:

    • Min = 0
    • Q1 = 20
    • Q3 = 60
    • Max = 120

    We still have 75% of the students exercising for 60 minutes or less daily and half of the students exercising between 20 and 60 minutes a day. However, 15 students is a small sample, and the principal should survey more students to be sure of his survey results.

    Box Plots

    Box plots (also called box-and-whisker plots or box-whisker plots) give a good graphical image of the concentration of the data. They also show how far the extreme values are from most of the data. A box plot is constructed from the values of the five-number summary, which we use to compare how close they are to other data values.

    To construct a box plot, use a horizontal or vertical number line and a rectangular box. The smallest and largest data values serve as the endpoints of the axis. The first quartile marks one end of the box, and the third quartile marks the other end of the box. Approximately the middle 50% of the data values fall inside the box. The “whiskers” extend from the ends of the box to the smallest and largest data values. The second quartile, or median, can be between the first and third quartiles, or it can be one, the other, or both. The box plot gives a good, quick picture of the data.

    NOTE: 

    You may encounter box-and-whisker plots that have dots marking outlier values. In those cases, the whiskers are not extending to the minimum and maximum values because they have been identified as outliers according to the fence rules.

    Example

    Consider, again, this dataset.

    1, 1, 2, 2, 4, 6, 6.8, 7.2, 8, 8.3, 9, 10, 10, 11.5

    The first quartile is 2, the median is 7, and the third quartile is 9. The smallest value is 1, and the largest value is 11.5. The following image shows the constructed box plot.

    Figure description available at the end of the section.
    Figure 2.42: Box plot. Figure description available at the end of the section.

     

    The two whiskers extend from the first quartile to the smallest value and from the third quartile to the largest value. The median is shown with a dashed line.

    NOTE: It is important to start a box plot with a scaled number line. Otherwise the box plot may not be useful.

    Example

    The following data are the heights of 40 students in a statistics class.

    59, 60, 61, 62, 62, 63, 63, 64, 64, 64, 65, 65, 65, 65, 65, 65, 65, 65, 65, 66, 66, 67, 67, 68, 68, 69, 70, 70, 70, 70, 70, 71, 71, 72, 72, 73, 74, 74, 75, 77

    Construct a box plot with the following properties.

    • Minimum value = 59
    • Maximum value = 77
    • First quartile (Q1) = 64.5
    • Second quartile (Q2 or median) = 66
    • Third quartile (Q3) = 70
    Figure description available at the end of the section.
    Figure 2.43: Student heights (box plot). Figure description available at the end of the section.
    1. Each quarter has approximately 25% of the data.
    2. The spreads of the four quarters are 64.5 – 59 = 5.5 (first quarter), 66 – 64.5 = 1.5 (second quarter), 70 – 66 = 4 (third quarter), and 77 – 70 = 7 (fourth quarter). So, the second quarter has the smallest spread, and the fourth quarter has the largest spread.
    3. Range: 77 – 59 = 18 (maximum value – minimum value)
    4. Interquartile range: 70 – 64.5 = 5.5 (Q3 – Q1)
    5. The interval 59–65 has more than 25% of the data, so it has more data in it than the interval 66–70, which has 25% of the data.
    6. The middle 50% (middle half) of the data has a range of 5.5 inches.

    Your Turn!

    The following data are the number of pages in 40 books on a shelf. Construct a box plot using a graphing calculator, and state the interquartile range.
    136, 140, 178, 190, 205, 215, 217, 218, 232, 234, 240, 255, 270, 275, 290, 301, 303, 315, 317, 318, 326, 333, 343, 349, 360, 369, 377, 388, 391, 392, 398, 400, 402, 405, 408, 422, 429, 450, 475, 512

    For some sets of data, some values (i.e., the largest value, smallest value, first quartile, median, or third quartile) may be the same. For instance, you might have a dataset in which the median and the third quartile are the same. In this case, the diagram would not have a dotted line inside the box displaying the median. The right side of the box would display both the third quartile and the median. For example, if the smallest value and the first quartile were both 1, the median and the third quartile were both 5, and the largest value was 7, the box plot would look like:

    Figure description available at the end of the section.
    Figure 2.44: Box plot with the same values. Figure description available at the end of the section.

    In this case, at least 25% of the values are equal to 1. Twenty-five percent of the values are between 1 and 5, inclusive. At least 25% of the values are equal to 5. The top 25% of the values fall between 5 and 7, inclusive.

    Figure References

    Figure 2.42: Kindred Grey (2020). Box plot. CC BY-SA 4.0. Adaptation of Figure 2.11 from OpenStax Introductory Statistics (2013) (CC BY 4.0). Retrieved from https://openstax.org/books/introductory-statistics/pages/2-4-box-plots

    Figure 2.43: Kindred Grey (2020). Student heights (box plot). CC BY-SA 4.0. Adaptation of Figure 2.12 from OpenStax Introductory Statistics (2013) (CC BY 4.0). Retrieved from https://openstax.org/books/introductory-statistics/pages/2-4-box-plots

    Figure 2.44: Kindred Grey (2020). Box plot with the same values. CC BY-SA 4.0. Adaptation of Figure 2.13 from OpenStax Introductory Statistics (2013) (CC BY 4.0). Retrieved from https://openstax.org/books/introductory-statistics/pages/2-4-box-plots

    Figure Descriptions

    Figure 2.42: Horizontal box plot’s first whisker extends from the smallest value, 1, to the first quartile, 2, the box begins at the first quartile and extends to the third quartile, 9, a vertical dashed line is drawn at the median, 7, and the second whisker extends from the third quartile to the largest value of 11.5.

    Figure 2.43: Horizontal box plot with first whisker extending from smallest value, 59, to Q1, 64.5, box beginning from Q1 to Q3, 70, median dashed line at Q2, 66, and second whisker extending from Q3 to largest value, 77.

    Figure 2.44: Horizontal box plot box begins at the smallest value and Q1, 1, until the Q3 and median, 5, no median line is designated, and has its lone whisker extending from the Q3 to the largest value, 7.

    definition

    License

    Icon for the Creative Commons Attribution-ShareAlike 4.0 International License

    Significant Statistics: An Introduction to Statistics Copyright © 2024 by John Morgan Russell is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License, except where otherwise noted.

    Share This Book