IQR Fence vs Outlier

Both terms below come up in the same part of the course, and students mix them up. Here is each one defined on its own, side by side, so you can see where they part company.

IQR fence (1.5 IQR rule)

Describing data

An IQR fence is a boundary set 1.5 IQRs below the first quartile or above the third quartile, and values outside the fences count as outliers.

The fences mark how far the data can reasonably reach before a value is worth flagging. You place the lower fence at Q11.5×IQRQ_1 - 1.5 \times \text{IQR} and the upper fence at Q3+1.5×IQRQ_3 + 1.5 \times \text{IQR}, finding the quartiles by the median-excluded (TI-84) rule this site uses. If Q1=12Q_1 = 12 and Q3=20Q_3 = 20, then the IQR is 8, 1.5×8=121.5 \times 8 = 12, and the fences sit at 1212=012 - 12 = 0 and 20+12=3220 + 12 = 32, so a value of 35 is an outlier by this rule while 31 is not. The fences are a convention for identifying points that deserve a second look, not proof that anything is wrong with those points.

Full entry for IQR fence

Outlier

Describing data

An outlier is a data value that lies unusually far from the rest of the distribution.

An outlier is a point that stands apart from the overall pattern of the data. A common rule flags a value as an outlier when it falls below Q11.5×IQRQ_1 - 1.5 \times \text{IQR} or above Q3+1.5×IQRQ_3 + 1.5 \times \text{IQR}, using the first quartile Q1Q_1, the third quartile Q3Q_3, and the interquartile range. For example, with Q1=3Q_1 = 3, Q3=9Q_3 = 9, and IQR =6= 6, any value below 39=63 - 9 = -6 or above 9+9=189 + 9 = 18 is an outlier. Outliers can be genuine extreme cases or data-entry errors, so you investigate before removing them.

Full entry for outlier

Where each one fits in the course