Quartile Calculator
Q1, Q2, Q3, interquartile range & outliers from your data
Last updated September 2026
Method: Standard textbook definitions. Q2 is the median of the sorted data; Q1 and Q3 are the medians of the lower and upper halves. Both the exclusive method (median left out of the halves) and the inclusive method (Tukey's hinges, median kept in both halves) are computed. Outliers use the 1.5 × IQR fence rule and extreme outliers the 3 × IQR rule.
Included: Q1, Q2 (median), Q3, interquartile range, five-number summary, range, mean, midhinge, quartile deviation, both fence pairs, a labeled outlier list, a side-by-side method comparison and a sorted data table.
Not included: Interpolated percentile methods, grouped or frequency-weighted input, weighted quartiles, and confidence intervals. Non-numeric entries are skipped automatically.
๐ Enter your data set
With an odd count the two methods differ: the exclusive method drops the median before splitting the data, the inclusive method keeps it in both halves. With an even count both give the same answer.
๐ Interquartile range (IQR = Q3 โ Q1)
๐งฎ Five-number summary
๐ฉ Outliers and fences
| Cutoff | Formula | Value |
|---|---|---|
| Lower fence | Q1 โ 1.5 ร IQR | -8.25 |
| Upper fence | Q3 + 1.5 ร IQR | 57.75 |
| Extreme lower | Q1 โ 3 ร IQR | -33 |
| Extreme upper | Q3 + 3 ร IQR | 82.5 |
1 outlier outside the 1.5 ร IQR fences:
78
โ๏ธ Both methods side by side
| Method | Q1 | Q2 | Q3 | IQR | Outliers |
|---|---|---|---|---|---|
| Exclusive (Method 1) | 16.5 | 24 | 33 | 16.5 | 1 |
| Inclusive (Method 2) | 18 | 24 | 31 | 13 | 1 |
Your data set has an odd count, so the two methods handle the middle value differently and can disagree.
๐ Step-by-step
- 1. Sort the data. Your 9 values in ascending order: 12, 15, 18, 22, 24, 27, 31, 35, 78.
- 2. Find the median (Q2). With an odd count the median is the single middle value: Q2 = 24.
- 3. Split into halves. Lower half has 4 values, upper half has 4. The median itself is left out of both halves.
- 4. Q1 is the median of the lower half. Q1 = 16.5.
- 5. Q3 is the median of the upper half. Q3 = 33.
- 6. Subtract for the IQR. IQR = 33 โ 16.5 = 16.5.
- 7. Build the fences. 16.5 โ 1.5 ร 16.5 = -8.25 and 33 + 1.5 ร 16.5 = 57.75. Anything outside that band is flagged as an outlier.
๐ข Sorted data and halves
| # | Value | Position | Flag |
|---|---|---|---|
| 1 | 12 | Lower half | - |
| 2 | 15 | Lower half | - |
| 3 | 18 | Lower half | - |
| 4 | 22 | Lower half | - |
| 5 | 24 | Median (excluded) | - |
| 6 | 27 | Upper half | - |
| 7 | 31 | Upper half | - |
| 8 | 35 | Upper half | - |
| 9 | 78 | Upper half | Outlier |
Quartile calculator: Q1, Q3, IQR and outliers explained
A quartile calculator splits a sorted data set into four equal parts and reports the three cut points: Q1, the median (Q2) and Q3. For the nine values 12, 15, 18, 22, 24, 27, 31, 35, 78 the exclusive method gives Q1 = 16.5, Q2 = 24 and Q3 = 33, so the interquartile range is 16.5 and the value 78 is flagged as an outlier.
Two sister tools cover the neighboring questions. The Standard Deviation Calculator measures spread using every value and its distance from the mean, which suits roughly symmetric data. The Statistics Calculator returns the whole descriptive package at once. Use this page when you specifically need the quartiles, the interquartile range, or a defensible outlier test that a single extreme value cannot distort.
What the three quartiles actually mean
Sort any list of numbers from smallest to largest and you can cut it into four groups of equal size. The three cut points are the quartiles. Q1, the first or lower quartile, sits at the 25% mark: roughly a quarter of the values fall at or below it. Q2 is the median, the 50% mark, with half the data on either side. Q3, the third or upper quartile, sits at the 75% mark, with three quarters of the values at or below it and the top quarter above.
Because the quartiles are defined by position rather than by arithmetic, they behave very differently from the mean. Doubling the largest value in a data set moves the mean noticeably and the standard deviation a lot, but it usually leaves Q1, Q2 and Q3 exactly where they were. That resistance to extreme values is the whole reason quartiles exist, and it is why housing prices, salaries, hospital wait times and web response times are almost always reported with a median and quartiles rather than an average.
The quartile and IQR formulas
There is no single algebraic expression for a quartile the way there is for a mean. Quartiles are defined by a procedure on the sorted data, and the formulas that follow describe that procedure:
Q2 = median(all sorted values) Q1 = median(lower half) Q3 = median(upper half) IQR = Q3 − Q1 Lower fence = Q1 − 1.5 × IQR Upper fence = Q3 + 1.5 × IQR The median itself has a simple rule: with an odd count it is the single middle value, and with an even count it is the average of the two middle values. Everything else in the list above follows from applying that same median rule three times, once to the whole data set and once to each half.
Worked example: nine values with one outlier
Take the sorted data set 12, 15, 18, 22, 24, 27, 31, 35, 78. There are nine values, so the count is odd and the median is the fifth value: Q2 = 24. Under the exclusive method the median is removed before splitting, which leaves a lower half of 12, 15, 18, 22 and an upper half of 27, 31, 35, 78. Each half has four values, so each median is the average of its two middle numbers:
Q1 = (15 + 18) ÷ 2 = 16.5 Q3 = (31 + 35) ÷ 2 = 33 IQR = 33 − 16.5 = 16.5 Now build the fences. The lower fence is 16.5 − 1.5 × 16.5 = −8.25, and the upper fence is 33 + 1.5 × 16.5 = 57.75. Every value from 12 to 35 sits comfortably inside that band, but 78 is far above 57.75, so it is flagged as an outlier. The five-number summary is 12, 16.5, 24, 33, 78, and the full range is 78 − 12 = 66 - four times the interquartile range, which is exactly the pattern you expect when one value sits well outside the pack.
The mean of the same nine numbers is 29.11 and the sample standard deviation is 19.76. Delete the single value 78 and the mean falls to 23.00 while the standard deviation collapses to 7.89, but the median only moves from 24 to 23. One point changed the mean by six units and cut the standard deviation by more than half; the median barely noticed. That contrast is the practical argument for quartile-based statistics.
Step by step through the sorted data
The table below shows the same nine values with the role each one plays under the exclusive method, so you can see exactly where the halves begin and end.
| Position | Value | Role (exclusive method) | Inside the fences? |
|---|---|---|---|
| 1 | 12 | Lower half, minimum | Yes |
| 2 | 15 | Lower half, feeds Q1 | Yes |
| 3 | 18 | Lower half, feeds Q1 | Yes |
| 4 | 22 | Lower half | Yes |
| 5 | 24 | Median (Q2), excluded from halves | Yes |
| 6 | 27 | Upper half | Yes |
| 7 | 31 | Upper half, feeds Q3 | Yes |
| 8 | 35 | Upper half, feeds Q3 | Yes |
| 9 | 78 | Upper half, maximum | No - outlier |
Exclusive and inclusive: the two quartile methods
If your textbook, your spreadsheet and your graphing calculator disagree about Q1, the cause is almost always the method. When the count of values is even, the sorted list splits cleanly down the middle and every method agrees. When the count is odd there is a leftover value in the middle, and the two conventions handle it differently.
The exclusive method, often labeled Method 1 and used by the TI-83 and TI-84 family as well as many introductory courses, removes the median before splitting. Each half then has fewer values, the halves sit further apart, and the resulting interquartile range is wider. The inclusive method, often labeled Method 2 and closely tied to Tukey's hinges from the original box plot, keeps the median in both halves. The halves overlap by one value, they sit closer together, and the interquartile range comes out narrower.
Neither answer is wrong. They are two reasonable conventions for the same idea, and the gap between them shrinks quickly as your data set grows. The calculator above always shows both, so you can match whichever one your assignment or software expects.
Both methods compared on six data sets
Every figure in this table was computed with the same rules the calculator uses. Notice that the two even-count rows agree exactly, while every odd-count row shows a different Q1, Q3 and IQR.
| Data set | n | Exclusive Q1 / Q2 / Q3 | IQR | Inclusive Q1 / Q2 / Q3 | IQR |
|---|---|---|---|---|---|
| 1, 2, 3, 4, 5 | 5 | 1.5 / 3 / 4.5 | 3 | 2 / 3 / 4 | 2 |
| 2, 4, 4, 4, 5, 5, 7, 9 | 8 | 4 / 4.5 / 6 | 2 | 4 / 4.5 / 6 | 2 |
| 3, 5, 7, 8, 12, 13, 14, 18, 21 | 9 | 6 / 12 / 16 | 10 | 7 / 12 / 14 | 7 |
| 12, 15, 18, 22, 24, 27, 31, 35, 78 | 9 | 16.5 / 24 / 33 | 16.5 | 18 / 24 / 31 | 13 |
| 62, 71, 74, 78, 82, 85, 88, 91, 94, 98 | 10 | 74 / 83.5 / 91 | 17 | 74 / 83.5 / 91 | 17 |
| 6, 7, 15, 36, 39, 40, 41, 42, 43, 47, 49 | 11 | 15 / 40 / 43 | 28 | 25.5 / 40 / 42.5 | 17 |
The last row shows how large the gap can get on a small, skewed sample: an IQR of 28 under one convention and 17 under the other, from identical numbers. On larger data sets the difference typically becomes negligible.
How many values land in each half
This table shows how the sorted list is divided for counts from 5 to 14. It is the quickest way to see why odd counts create two answers and even counts create one.
| Count (n) | Median (Q2) is | Values per half, exclusive | Values per half, inclusive |
|---|---|---|---|
| 5 | the 3rd value | 2 | 3 |
| 6 | average of the 3rd and 4th | 3 | 3 |
| 7 | the 4th value | 3 | 4 |
| 8 | average of the 4th and 5th | 4 | 4 |
| 9 | the 5th value | 4 | 5 |
| 10 | average of the 5th and 6th | 5 | 5 |
| 11 | the 6th value | 5 | 6 |
| 12 | average of the 6th and 7th | 6 | 6 |
| 13 | the 7th value | 6 | 7 |
| 14 | average of the 7th and 8th | 7 | 7 |
The 1.5 x IQR rule and the four fences
An outlier test needs a cutoff, and the interquartile range supplies one that scales with the data instead of assuming a fixed threshold. The standard rule multiplies the IQR by 1.5 and steps that distance out from each quartile. Anything past those fences is a candidate outlier. Stepping out three interquartile ranges instead marks extreme outliers, the values that are unusual even among the unusual ones.
| Fence | Formula | Exclusive (Q1 16.5, Q3 33) | Inclusive (Q1 18, Q3 31) |
|---|---|---|---|
| Lower outlier fence | Q1 − 1.5 × IQR | −8.25 | −1.5 |
| Upper outlier fence | Q3 + 1.5 × IQR | 57.75 | 50.5 |
| Lower extreme fence | Q1 − 3 × IQR | −33 | −21 |
| Upper extreme fence | Q3 + 3 × IQR | 82.5 | 70 |
| Verdict on 78 | compare with the fences | Mild outlier | Extreme outlier |
That last row is worth pausing on. The same value, 78, in the same data set, is a mild outlier under one convention and an extreme outlier under the other, purely because the narrower inclusive IQR pulls the fences inward. When an outlier decision matters, state which quartile method you used.
Second worked example: ten test scores
Now take an even-count data set, ten exam scores: 62, 71, 74, 78, 82, 85, 88, 91, 94, 98. Ten is even, so the list splits cleanly into 62, 71, 74, 78, 82 and 85, 88, 91, 94, 98 with no leftover value, and both methods return the same answer. The median is the average of the fifth and sixth values, (82 + 85) ÷ 2 = 83.5. Each half has five values, so each quartile is simply the middle one of its half: Q1 = 74 and Q3 = 91.
The interquartile range is 91 − 74 = 17, meaning the middle half of the class scored within a 17-point band. The fences are 74 − 25.5 = 48.5 and 91 + 25.5 = 116.5, and since the lowest score is 62 and the highest is 98, no score is an outlier. The five-number summary is 62, 74, 83.5, 91, 98; the mean is 82.30 and the sample standard deviation is 11.19. Here the mean and the median sit close together, which is the signature of a fairly symmetric data set.
How to use this calculator
Paste or type your numbers into the box. Commas, spaces, semicolons and line breaks all work as separators, so a column copied straight out of a spreadsheet is fine. Dollar and percent signs are stripped, and any token that is not a number is skipped with a short note so a stray column heading does not break the calculation.
Pick the quartile method with the two buttons. If you are checking homework, choose the one your course uses; if you are not sure, look at the side-by-side table further down, which always shows both. Set the number of decimal places to match how you want to report the answer. The results update as you type: the headline is the interquartile range, the three tiles beneath it are Q1, Q2 and Q3, and the cards below give the five-number summary, the fences, the outlier list, the method comparison and a sorted table with each value labeled.
Who this calculator is for
Students working through a statistics unit use it to check quartile and box plot homework, and the step-by-step card shows the intermediate values a grader will want to see. Teachers use it to generate examples with predictable answers. Analysts and engineers use the IQR and the fences to screen a data set before modeling it, since a single mistyped value can wreck an average while leaving a median untouched. Quality and operations teams use quartiles to describe cycle times and defect counts, where the distribution is usually skewed and the mean is misleading. Anyone comparing two groups can also use the midhinge and the interquartile range as a compact, outlier-resistant summary of center and spread.
Key terms
- Quartile: one of the three cut points that divide sorted data into four equal-sized groups.
- Q1, first or lower quartile: the 25th percentile; the median of the lower half.
- Q2, median: the 50th percentile; the middle value of the whole data set.
- Q3, third or upper quartile: the 75th percentile; the median of the upper half.
- Interquartile range (IQR): Q3 − Q1; the width of the middle 50% of the data.
- Fence: a cutoff placed 1.5 (or 3) interquartile ranges beyond a quartile, used to flag outliers.
- Outlier: a value below the lower fence or above the upper fence.
- Five-number summary: minimum, Q1, median, Q3, maximum - the five values a box plot draws.
- Midhinge: the average of Q1 and Q3, an outlier-resistant estimate of the center.
- Quartile deviation, or semi-interquartile range: half the IQR, sometimes reported as a spread measure.
- Tukey's hinges: the quartile definition behind the original box plot, matching the inclusive method here.
What changes your quartiles
Four things move the numbers, and knowing which one is responsible saves a lot of confusion when two tools disagree.
- The method. Exclusive versus inclusive, on an odd count, is the single most common reason for a mismatch.
- The count. Adding or removing one value can flip the count from even to odd and change which rule applies. It also shifts every position in the sorted list.
- Duplicates. Repeated values are counted individually, not collapsed. Ten copies of the same number pull the quartiles toward it, and a data set with enough duplicates can end up with Q1 = Q3 and an IQR of zero.
- Values near the quartile positions. A change to the smallest or largest value usually leaves the quartiles untouched, while a change to a value sitting right at a quartile position moves it directly. That is the opposite of how the mean behaves.
Tips for reporting quartiles
- Always say which method you used when the count is odd, and say it in the same sentence as the number.
- Report the five-number summary as a unit rather than a lone IQR. Readers need the center and the endpoints to interpret the spread.
- Round the quartiles to the same precision as your raw data. Quoting Q1 = 16.5000 for whole-number measurements suggests a precision you do not have.
- For skewed data, quote the median and IQR instead of the mean and standard deviation, and say so explicitly.
- Investigate flagged outliers before doing anything with them, and report how many you found and what you decided to do.
- When comparing two groups, compare the interquartile ranges rather than the full ranges. The full range grows simply because a larger sample gives extreme values more chances to appear.
Limitations of quartiles and the IQR
Quartiles throw information away on purpose, and that has costs. They ignore the shape of the data inside each quarter, so two very different distributions can share an identical five-number summary. On small samples the quartiles are unstable: with eight or nine values, adding one number can move Q1 or Q3 noticeably, and the fences move with them.
The 1.5 × IQR rule is a convention, not a statistical test. It does not produce a probability, it has no significance level, and on a large data set from a normal distribution it will flag roughly one value in a hundred and fifty as an outlier even when nothing is wrong. Treat a flagged point as a prompt to investigate, never as proof of an error. Finally, the IQR is undefined in any useful sense for categorical data, and for heavily rounded or discrete data it can land on a value that no observation actually takes.
Related calculators
- For spread measured from the mean, including sample and population variance, use the Standard Deviation Calculator.
- For a full descriptive summary of one data set in a single pass, use the Statistics Calculator.
- To find how many standard deviations a single value sits from the mean, use the Z-Score Calculator.
- For the mean, median and mode of a list on their own, use the Average Calculator.
- To express a quartile as a share of a total, use the Percentage Calculator.
- For chance and distribution questions built on the same data, use the Probability Calculator.
Sources
Quartiles, the interquartile range and the 1.5 × IQR fence rule are exact mathematical definitions applied to your own numbers, not published statistics, so there is no external data source to cite. Every figure on this page was computed directly from the data sets shown:
- Deterministic definitions. Q2 is the median of the sorted data; Q1 and Q3 are the medians of the lower and upper halves; IQR = Q3 − Q1. These follow from the definitions alone and need no source.
- The two conventions. The exclusive method (median removed from the halves) and the inclusive method (median kept in both halves, matching Tukey's hinges from exploratory data analysis) are the two standard textbook conventions for odd-count data. Both are computed here so results can be matched to either.
- The fence rule. The 1.5 × IQR outlier fences and the 3 × IQR extreme-outlier fences are the conventional cutoffs used in box plots. They are rules of thumb by construction, not derived thresholds.
- Worked examples and tables. All quartiles, interquartile ranges, fences, means and standard deviations shown above were computed from the listed data sets using these formulas.
โ ๏ธ Common mistakes & edge cases
Forgetting to sort the data first
Quartiles are positional. Running the rule on an unsorted list gives a meaningless answer, and it is the single most common hand-calculation error. This calculator sorts for you, but if you are working on paper, sort before you do anything else.
Mixing up the two quartile methods
On the nine values 12, 15, 18, 22, 24, 27, 31, 35, 78 the exclusive method gives Q1 = 16.5 and the inclusive method gives Q1 = 18. Neither is wrong. If your answer does not match the answer key, check the method before assuming you made an arithmetic mistake.
Reading the IQR as a range of positions
The interquartile range is measured in the units of your data, not in counts. An IQR of 17 on exam scores means the middle half of the class spans 17 points, not that 17 students are in the middle. Confusing the two turns every interpretation upside down.
Deleting every flagged outlier
A value past the 1.5 × IQR fence is a candidate for review, not a proven error. Removing genuine extreme values shrinks the spread artificially and makes every later statistic look more precise than the data really is. Check the source of the point first.
Assuming a whisker ends at a fence
On a box plot the whiskers stop at the most extreme values that are still inside the fences, not at the fences themselves. The fences are invisible cutoffs used to decide what counts as an outlier; drawing a whisker out to 57.75 when the largest non-outlier is 35 misrepresents the data.
Trusting quartiles on tiny samples
With four or five values each half contains only two or three numbers, so Q1 and Q3 swing wildly when one point changes. Quartiles start to settle down around eight to ten values; below that, quote the actual numbers instead.
❓ Frequently asked questions
What is a quartile?
A quartile is one of the three values that split a sorted data set into four equal-sized groups. Q1 (the first quartile) sits at the 25% mark, Q2 is the median at 50%, and Q3 (the third quartile) sits at the 75% mark. About a quarter of your values fall below Q1, half fall below Q2, and three quarters fall below Q3.
How do I calculate Q1 and Q3 by hand?
Sort the data from smallest to largest and find the median (Q2). Split the sorted list into a lower half and an upper half at the median. Q1 is the median of the lower half and Q3 is the median of the upper half. For 12, 15, 18, 22, 24, 27, 31, 35, 78 the median is 24, the lower half is 12, 15, 18, 22 (median 16.5) and the upper half is 27, 31, 35, 78 (median 33), so Q1 = 16.5 and Q3 = 33.
What is the interquartile range (IQR)?
The interquartile range is Q3 minus Q1: the width of the middle 50% of your data. It measures spread while ignoring the smallest and largest quarter of the values, which makes it far more resistant to outliers than the full range or the standard deviation. In the example above, IQR = 33 minus 16.5 = 16.5.
What is the difference between the exclusive and inclusive quartile methods?
The difference only appears when the count of values is odd. The exclusive method (Method 1) drops the median value before splitting the data into halves. The inclusive method (Method 2, also called Tukey's hinges) keeps the median in both halves. For 12, 15, 18, 22, 24, 27, 31, 35, 78 the exclusive method gives Q1 = 16.5 and Q3 = 33, while the inclusive method gives Q1 = 18 and Q3 = 31. With an even count both methods agree exactly.
Which quartile method should I use?
Use whichever method your course, textbook or software uses, because neither is more correct than the other. Graphing calculators in the TI-83 and TI-84 family and many introductory statistics textbooks use the exclusive method. Tukey's original box plot and several software packages use the inclusive method. This calculator shows both at once so you can check which one matches the answer you were given.
How does the 1.5 x IQR rule find outliers?
Compute the two fences: the lower fence is Q1 minus 1.5 times the IQR and the upper fence is Q3 plus 1.5 times the IQR. Any value below the lower fence or above the upper fence is flagged as an outlier. With Q1 = 16.5 and Q3 = 33 the fences sit at -8.25 and 57.75, so the value 78 is an outlier.
What is an extreme outlier?
An extreme outlier lies beyond three interquartile ranges from the nearest quartile: below Q1 minus 3 times the IQR or above Q3 plus 3 times the IQR. Values that clear the 1.5 fence but not the 3.0 fence are usually called mild outliers. Box plots often draw mild outliers as dots and extreme outliers as stars or filled markers.
Should I delete outliers from my data?
No, not automatically. The 1.5 x IQR rule flags values that deserve a second look, not values that are automatically wrong. Check whether the point is a typing error, a unit mix-up or a genuine measurement first. Genuine extreme values often carry the most interesting information, and dropping them silently biases every statistic you report afterwards.
What is the five-number summary?
The five-number summary is minimum, Q1, median, Q3 and maximum. Those five values describe the center, the spread and the shape of a data set in one line, and they are exactly what a box plot draws: a box from Q1 to Q3 with a line at the median, and whiskers reaching out to the most extreme values still inside the fences.
Is the interquartile range better than the standard deviation?
Neither is better in general; they answer different questions. The standard deviation uses every value and works well for roughly symmetric, bell-shaped data. The IQR ignores the outer quarters, so a single extreme value barely moves it, which makes it the better choice for skewed data such as incomes, house prices or response times.
Can the IQR be zero?
Yes. If at least half of your values are identical, the middle 50% of the data can collapse onto a single number and Q1 equals Q3, so the IQR is zero. In that case the fences also collapse onto that value and every different number in the data set is flagged as an outlier, which is a sign that the 1.5 x IQR rule is not a good fit for that data.
How many values do I need to compute quartiles?
Technically the calculator returns quartiles from four values upward, and it will still return numbers for two or three. In practice quartiles only start to mean something once you have roughly eight or more values, because each half needs enough numbers for its own median to be stable. With very small samples the quartiles jump around a lot when you add a single point.
Are quartiles the same as percentiles?
Quartiles are specific percentiles: Q1 is the 25th percentile, Q2 is the 50th percentile and Q3 is the 75th percentile. The difference is in how they are usually computed. Quartiles are traditionally found as medians of halves, while general percentiles are often computed by interpolating between the two values that surround the target position, which can give slightly different answers for the same data.
Does this quartile calculator handle decimals and negative numbers?
Yes. You can enter decimals, negative values and numbers separated by commas, spaces, semicolons or new lines. Dollar signs and percent signs are stripped automatically, and anything that is not a number is skipped with a note so a stray label in a pasted column does not break the result.
๐ก Good to know
The IQR is why the median beats the average for skewed data
Remove the single value 78 from 12, 15, 18, 22, 24, 27, 31, 35, 78 and the mean falls from 29.11 to 23.00 while the sample standard deviation drops from 19.76 to 7.89. The median moves only from 24 to 23. When one value can rewrite your summary, quartiles are the safer description.
Where the 1.5 comes from
The multiplier is a deliberate compromise from exploratory data analysis, not a derived constant. It is wide enough that ordinary variation in bell-shaped data rarely trips it, and narrow enough that genuinely odd values stand out. Doubling it to 3 gives the extreme-outlier fence.
A five-number summary is a box plot in words
Minimum, Q1, median, Q3, maximum is exactly what a box plot draws: the box runs from Q1 to Q3, the line inside marks the median, and the whiskers reach to the furthest values still inside the fences. If you can read the summary, you can sketch the plot.