Outlier Detector
Runs three outlier tests on every numeric column and reports which of them flagged each value.
Loading the tool…
How to use this tool
- Paste a CSV with at least one mostly numeric column.
- Leave the thresholds alone the first time; 1.5 and 3 are the conventional ones.
- Select Find outliers.
- Start with the values all three methods flagged, then raise the agreement setting if there is too much to look at.
What outlier detector does
Every outlier method disagrees with the others somewhere, and which one a tool picked is usually invisible in the answer. The IQR rule makes no assumption about the shape of the data. The z-score assumes something roughly normal and is dragged around by the very extreme values it is meant to find. The modified z-score uses the median absolute deviation instead of the standard deviation, so it is not.
All three run here and every flagged value is reported with the methods that flagged it. That turns the output into something you can reason about: a value all three dislike is worth investigating, and a value only the z-score dislikes usually just means the column is skewed. A column is only tested when most of it is numeric, so an identifier column with a few numbers in it does not produce nonsense bounds.