🎲  Outlier

Outlier#

An observation far from the bulk of the data.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

An outlier is an extreme, atypical value that sits far from the bulk of the data. Outliers arise from genuine rare events, measurement or data-entry errors, or a mixture of populations — and spotting them matters because they can distort an analysis.

What they break#

Outliers hit statistics that use every value hardest — the mean, the variance / standard deviation, and squared-error losses like MSE, which square the large residual — while robust measures like the median barely move. This gap between mean and median is itself a signal of outliers or skew.

How they’re handled#

Outliers are detected (z-scores, the IQR rule, distance- or model-based methods), then investigated — a true error is corrected or removed, but a genuine extreme is often kept and handled with robust methods or transforms rather than silently discarded.


Theme: Probability & Statistics Foundations  ·  All terminology


Hint

Mind map — connected ideas

Mean · Median · Mean Squared Error (MSE) · Normal Distribution · Z-Score · Standard Error (SE)


See also

Source article Adapted (context, re-expressed) in our own words from: Outlier (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: beginner