Math & statistics
Outlier Calculator
Paste your data and the 1.5×IQR rule does the rest: quartiles, fences, and a clear list of which values count as outliers — with every step shown.
Outliers found
—
—
Q1
—
Q3
—
IQR
—
lower fence
—
upper fence
Frequently asked questions
How does the 1.5×IQR rule work?
Compute the interquartile range IQR = Q3 − Q1, then the fences: lower = Q1 − 1.5×IQR and upper = Q3 + 1.5×IQR. Any value below the lower fence or above the upper fence is an outlier.
Why 1.5 times the IQR?
It is John Tukey’s convention from exploratory data analysis — wide enough that normal data rarely gets flagged (about 0.7% would be, for a normal distribution) but tight enough to catch genuinely unusual values. Some fields use 3×IQR for “extreme” outliers.
Should I delete outliers from my data?
Not automatically. First check whether the value is a data-entry error, a measurement problem, or a real observation. Real outliers often carry the most interesting information — report them, and if you exclude them, say so.
Can z-scores find outliers too?
Yes — values with |z| > 2 or 3 are often flagged. But z-scores use the mean and standard deviation, which outliers themselves distort. The IQR rule resists that, which is why box plots use it.
Method: Tukey’s fences with the TI-84 (Moore) quartile convention — Q1/Q3 are medians of the lower/upper halves, excluding the overall median for odd n. Other quartile conventions can move borderline values in or out.