🎲  Mean

Mean#

The arithmetic average of a set of values.

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#

The (arithmetic) mean is the average — the sum of all values divided by their count:

\[\mu = \frac{1}{n}\sum_{i=1}^{n} x_i.\]

It uses every data point, which makes it the natural summary of a symmetric distribution and the value that minimizes squared error.

Its weakness#

Because it incorporates every value, the mean is sensitive to outliers and skew — a single extreme value drags it toward the tail. Statisticians say its breakdown point is 0%: one bad point can move it arbitrarily. On skewed data like income, the mean overstates where most values sit.

When to use it#

Prefer the mean for roughly symmetric, outlier-free numeric data, where it is efficient and mathematically convenient (it feeds variance, standard error, regression). For skewed or outlier-heavy data, reach for the median. It is undefined for categorical data.


Theme: Probability & Statistics Foundations  ·  All terminology



See also

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

Tags: purpose: reference topic: terminology level: beginner