Find Outliers Two Ways
3-Sigma and IQR, Side by Side
Upload a CSV and compare two outlier definitions per column, with adjustable thresholds and an interactive histogram and box plot. Every flagged value shows its row number nothing is removed automatically.
Drop your CSV file here
CSV files only your file never leaves your browser
Numeric columns need at least 4 values to be analyzed.
How to Find Outliers in a CSV File
This tool calculates both standard outlier definitions for every numeric column and lets you explore each one visually.
Two Ways to Define an Outlier And Why They Disagree
The 3-sigma (Z-score) method assumes your data is roughly bell-shaped and asks "how many standard deviations from the mean is this value?" It is simple and widely taught, but the mean and standard deviation are themselves dragged around by extreme values one massive outlier can inflate the standard deviation enough that genuinely unusual values nearby no longer look extreme by comparison.
The IQR (Tukey) method instead looks at the median and the middle 50% of your data (between Q1 and Q3). Because the median barely moves even with extreme values present, this method is far more robust for skewed distributions revenue, transaction amounts, response times where most values cluster low and a long tail of larger values is completely normal. This tool runs both, side by side, with adjustable thresholds, so you can see exactly where and why they differ for your data.
3-Sigma (Z-score)
mean ± threshold × std dev. Best for roughly normal data.
IQR (Tukey)
Q1/Q3 ± multiplier × IQR. Robust to skew, the box-plot standard.
Adjustable
2.0–3.5σ or 1.5×/3× IQR see the count change live.
Compared
Both counts shown per column in the overview table.
How to Read the Histogram and Box Plot
The histogram groups all values into bins taller bars mean more values fall in that range. Bins shaded red fall entirely inside the current outlier zone for your selected method and threshold; purple bins are the normal range. The box plot shows the box from Q1 to Q3 (the middle 50% of values) with a line at the median, whiskers reaching to the most extreme non-flagged values, and individual red dots for every value beyond the whiskers hover any dot to see its row number and value.
Four common causes of outliers in business data
Data Entry Errors
An extra zero, a misplaced decimal, or a copy-paste that duplicated a digit typing 100000 instead of 10000.
System Defaults
A sensor or API returns -1, 0 or 9999 for a missing reading instead of leaving the field blank.
Genuine Extremes
A single large order, a record day, a payment reversal real values that are the signal, not the noise.
Leftover Test Data
Staging records with placeholder amounts like 12345.67 or dates from 1970 or 2099, never cleaned before export.
Frequently Asked Questions
More Free Data Quality Tools
Find Duplicates in CSV
Detect and remove duplicate rows, columns, headers
CSV Null Value Checker
Find and fill missing values column by column
Data Quality Checker
Weighted 0-100 score, type mismatches, outliers
Excel Data Analyzer
Multi-sheet stats for XLSX and XLS files
CSV to SQL
Convert your CSV to SQL INSERT statements
JSON Formatter
Validate and format JSON data