Outlier Calculator
Find statistical outliers in your dataset using the IQR method
Understanding Outliers
Outliers are data points that significantly differ from other observations in a dataset. They can be identified using several methods:
IQR Method (Used in this calculator)
- Calculate Q1 (25th percentile) and Q3 (75th percentile)
- Find IQR = Q3 - Q1
- Calculate fences: Lower = Q1 - 1.5×IQR, Upper = Q3 + 1.5×IQR
- Values outside these fences are outliers