Skip to main content
1+1
EN
All calculators

Categories

Descriptive statistics calculator

Paste a column of numbers and get the whole picture at once: where the data centres, how far it spreads, which shape it takes, and which values sit outside the crowd.

Your data

Separate them with spaces, commas or line breaks. Paste a column straight from a spreadsheet.

Result

Fill in the fields to see your result.

How it works

Three questions describe almost any set of numbers. Where is the middle? How spread out is it? And is it lopsided? The mean answers the first by balancing the values; the median answers it by counting to the middle. When the two disagree, the data is telling you something — usually that a handful of extreme values are pulling on the mean.

Spread is measured by the standard deviation: the typical distance from the mean. Whether you divide by n or by n − 1 depends on what your numbers are. A complete population divides by n. A sample divides by n − 1, because a sample always hugs its own mean a little too closely and would otherwise understate the true spread.

The interquartile range takes a different route to the same question, describing the middle half of the data and ignoring the tails entirely. That makes it steady where the standard deviation is sensitive, which is why outlier fences are built from it rather than from the mean.

Formulas used

Mean

mean = Σx ÷ n

Variance and standard deviation

s² = Σ(x − mean)² ÷ (n − 1) s = √s²

For a whole population, divide by n instead of n − 1.

Outlier fences

Q1 − 1.5 × IQR and Q3 + 1.5 × IQR

Tukey’s rule. Values outside these bounds are worth a second look.

Worked examples

Ten measurements

The series averages 15.5 with a median of 15 — close together, so the distribution is fairly even.

The sample standard deviation is about 3.37, meaning a typical reading sits a little over three units from the middle. Nothing falls outside the fences.

One value ruins the mean

Eight values between 4 and 8, and one of 40. The mean jumps to 9.78 while the median stays at 6.

The gap between them is the warning sign, and the 40 is duly flagged as an outlier — it sits far above the upper fence of 10.

A whole class, not a sample

These ten marks are every mark in the class, so the population setting applies and the variance divides by 10, not 9.

The mean is 80.8 and the standard deviation about 8.4 — the choice of divisor shifts it by roughly half a point.

Assumptions and limits

  • Values are treated as independent observations of one variable.
  • Non-numeric text in the input is ignored rather than counted as zero.
  • Quartiles use linear interpolation (type 7).
  • The geometric mean is only shown when every value is positive.

Frequently asked questions

Sample or population — which should I choose?

Population if your numbers are everything you care about: every employee in the company, every mark in the class. Sample if they are a subset standing in for something bigger.

The difference only touches the variance and standard deviation, and it shrinks as the series grows. With thirty values it is under 2%; with five it is over 10%.

Should I report the mean or the median?

The median, whenever a few extreme values could distort the picture — incomes and house prices being the classic cases. The mean, when the data is roughly symmetrical and you need it for further calculation.

A large gap between the two is itself a finding, and worth reporting alongside whichever figure you choose.

What makes a value an outlier?

This calculator uses Tukey’s rule: anything more than one and a half interquartile ranges beyond the first or third quartile.

It is a convention, not a verdict. An outlier can be a typing error, a broken instrument, or the single most interesting observation you have. Investigate before you delete.

Why do quartiles differ between tools?

Because there are at least nine defensible ways to define them, and different software picks different ones. Spreadsheets and R default to linear interpolation, which is what is used here.

On large series the methods agree closely. On small ones they can differ noticeably, which is worth knowing before comparing two reports.

Updated