Loading...
Loading...
Identify outliers using IQR, z-score, modified z-score (MAD), and Grubbs' test with step-by-step solutions and Python code.
Enter your data and click Detect Outliers.
Available Methods:
The 1.5 * IQR rule was proposed by John Tukey. For normally distributed data, this captures about 99.3% of values. A multiplier of 3.0 identifies "extreme outliers." The 1.5 value balances sensitivity and specificity for most practical datasets.
The IQR method is non-parametric and uses quartiles, making it robust to skewed data and resistant to the influence of outliers themselves. Z-score assumes normality and uses mean/std dev, which are heavily affected by outliers. Use IQR for skewed data, z-score for approximately normal data.