Outlier Detector
100% client-side
Identify and isolate statistical anomalies in your experimental data or MD trajectories locally.
dataset.csv
0 Rows
Flags values where |Z| > 3.0.
How this method decides
How to detect outliers in your data
Upload a CSV, pick a column and a detection rule, and flag anomalous values, then export either the cleaned data or just the anomalies.
Load your data
Drag in a .csv/.tsv/.txt file (or click to browse). Or click Load example to try a sample with two planted outliers.
Pick a column & method
Choose the numeric column and one of Z-Score, IQR, or the robust Modified Z-Score.
Set the threshold
Adjust the multiplier; the hint explains what the current setting flags. Defaults follow standard practice.
Scan & export
Run the scan to highlight outliers in the table, then export the cleaned dataset or the flagged rows.
How it works
Three complementary rules
Z-Score assumes roughly normal data. IQR (Tukey) is non-parametric and good for skew. Modified Z-Score uses the median and MAD, so it is robust, a few extreme values don't hide the rest.
Why robustness matters
The mean and standard deviation are themselves distorted by outliers, so a single huge value can mask others. Median/MAD-based detection avoids this, which is why 3.5 on the modified Z-Score is a widely recommended default.
The three detection rules
Each method flags values in the selected column that lie unusually far from the centre; they differ in how “centre” and “spread” are estimated and how robust they are to the very outliers you are hunting.
Z-Score (parametric), uses the mean and sample standard deviation:
Tukey’s IQR fences (non-parametric), uses the quartiles:
Modified Z-Score (robust), uses the median and the median absolute deviation:
where is the mean, the sample standard deviation, / the first/third quartiles, the median, MAD the median absolute deviation, and the threshold you set. Typical defaults are (Z-Score), (IQR, Tukey) and (modified Z-Score, Iglewicz–Hoaglin). The constant 0.6745 makes the MAD a consistent estimator of the standard deviation for normal data. When more than half the values are identical (MAD = 0) the tool falls back to the mean-absolute-deviation form.
References & documentation
- Tukey, J. W. (1977). Exploratory Data Analysis. Addison-Wesley. (Origin of the IQR “fences”.)
- Iglewicz, B., & Hoaglin, D. C. (1993). How to Detect and Handle Outliers. ASQC Quality Press. (Modified Z-score, threshold 3.5.)
- Heckert, N. A., Filliben, J. J., Croarkin, C., et al. (2002). NIST/SEMATECH e-Handbook of Statistical Methods, §1.3.5 & §7.1.6. itl.nist.gov/div898/handbook.
Frequently asked questions
Is my data uploaded anywhere?
Which method should I use?
What thresholds are typical?
How many values do I need?
Does 'Export Cleaned' change my original file?
Detection runs entirely in your browser, no data leaves your device.