Loading…

Z–scores and Outlier Checks

Biology • Bio Lab Math and Data Analysis

View all topics

Z-scores & outlier checks

Blanks are ignored. Non-numeric entries are skipped and reported. You can also load a CSV/text file (one numeric column is enough).
Z-threshold is simple and works well when the data are roughly normal. IQR is more robust for skewed data.
Common choices: 2 (lenient), 2.5, 3 (strict).
Interactive plots: hover to see values, click a point to highlight its table row, wheel to zoom, drag to pan.
Ready

Rate this calculator

0.0 /5 (0 ratings)
Be the first to rate.
Your rating
You can update your rating any time.

Frequently Asked Questions

What is a z-score and how is it calculated?

A z-score measures how many standard deviations a value is from the mean. This calculator uses z = (x - xbar) / s, where xbar is the sample mean and s is the sample standard deviation.

How does the Z-threshold outlier rule work?

A value is flagged when its absolute z-score exceeds a chosen threshold c, meaning |z| > c. This is equivalent to x < xbar - c x s or x > xbar + c x s, which is why the histogram shades the tail regions beyond those cutoffs.

What are Tukey fences in the IQR outlier rule?

The IQR rule uses quartiles: IQR = Q3 - Q1. The lower fence is Q1 - k x IQR and the upper fence is Q3 + k x IQR; values outside these fences are flagged as IQR outliers.

When should I prefer the IQR rule over z-scores?

Use the IQR rule when the distribution is skewed or has strong asymmetry, because quartiles are more robust than the mean and standard deviation. Z-threshold works best when data are roughly symmetric and near-normal.

Does an outlier flag mean the value is wrong and should be deleted?

No. An outlier flag is a signal to double-check units, data entry, and experimental context; true biological extremes can be real. If you exclude points, document the rule used and the reason for exclusion.