Outlier Calculator
Find the outlier fences using the 1.5×IQR rule.
Values outside the fences are flagged as potential outliers.
The math behind it
lower fence = Q1 − 1.5×IQR; upper fence = Q3 + 1.5×IQR. Anything beyond is an outlier.
Worked example
4,8,15,16,23 → fences −4 and 28.
FAQ
Why 1.5?
It's the standard Tukey rule for mild outliers (3× for extreme).