Statistics Helper

What does your data set actually look like — mean, spread, and more?

Paste or type any set of numbers and get the full descriptive statistics breakdown — mean, median, mode, standard deviation, variance, and range — in one click. Useful for students, analysts, and anyone working with data who needs a quick sanity check.

Updated July 2026 · How this works

Example calculation — edit any field to use your own numbers

Worth knowing
How It Works
The formula, explained simply

Imagine you asked ten friends how long their commute takes. If you add all ten numbers and divide by ten, that is the mean. But if one friend commutes 90 minutes while the other nine average 20, the mean jumps to 27 — higher than what nine out of ten people actually experience. The median — the middle value when sorted — would stay at 20, which is far more representative of the group.

Descriptive statistics work by reducing a list of numbers to a handful of landmarks. The mean tells you the center of gravity. The median tells you the true midpoint. The mode tells you the most common value, which matters in things like survey responses or defect counts. The range and standard deviation tell you how spread out the data is — whether values are tightly clustered or all over the place.

Standard deviation is the most useful spread measure because it is in the same units as your original data. A standard deviation of 5 kg means most values fall within 5 kg of the mean. Variance is the squared version — it is used in further calculations like ANOVA but is harder to interpret on its own. This tool gives you both, so you can use whichever your analysis requires.

When To Use This
Right tool, right situation

Use descriptive statistics when you need to summarize a batch of numbers before presenting, comparing, or analyzing them. This tool is appropriate for student scores, survey responses, measurement series, financial figures over time, and any situation where you have a list of raw values and need to communicate what they look like as a group.

This tool is not appropriate when your values have different weights or importance. A student who took three exams worth different percentages of their grade needs a weighted mean, not a simple one. It is also not appropriate for time series where the sequence matters — average monthly revenue tells you less than the trend over those months. And it does not handle grouped frequency tables, where you know how many values fall in each bucket but not the individual values.

If you are comparing two groups and want to know whether the difference in means is statistically significant, you need a t-test or ANOVA — not just the means themselves. Descriptive statistics describe. They do not test hypotheses or establish causation.

Common Mistakes
Why results sometimes look wrong

The most common mistake is using the mean when the data is skewed. If you are summarizing salaries, house prices, or response times, the mean is inflated by high outliers. Using it as the headline figure overstates what is typical. The consequence is misrepresenting your data to an audience who will make decisions based on it.

A second mistake is confusing sample and population standard deviation. If your data is the full population — every employee at a five-person company, every part in a batch of 20 — you divide by n. If it is a sample drawn from a larger group, divide by n-1. Most calculators default to sample (n-1), including this one. Using the wrong formula understates or overstates spread, which can invalidate hypothesis tests.

A third mistake specific to this tool: entering percentage values and treating the mean as a weighted average. If three groups contributed 20%, 40%, and 60% but had different sizes, averaging those percentages gives you the wrong overall rate. You need a weighted mean, not a simple mean. The simple mean only applies when every value contributes equally.

The Math
Worked examples and deeper derivation

Mean: sum all values, divide by count. For values x1 through xn, mean = (x1 + x2 + ... + xn) / n.

Median: sort values in ascending order. If count is odd, the median is the middle value at position (n+1)/2. If count is even, take the average of the two middle values at positions n/2 and n/2+1.

Mode: count how often each value appears. The value or values with the highest frequency are the mode. If all values appear equally often, there is no mode.

Sample standard deviation: calculate the mean, then for each value compute the squared difference from the mean, sum all squared differences, divide by n-1, then take the square root. Written out: s = sqrt( sum((xi - mean)^2) / (n-1) ). Variance is that same formula without the square root: s^2 = sum((xi - mean)^2) / (n-1).

Range: simply the maximum value minus the minimum value. It is the most sensitive summary statistic — a single extreme outlier changes it completely — which is why standard deviation is preferred for describing typical spread.

Grading a class quiz
Scores: 72, 85, 91, 68, 77, 85, 90, 63, 85, 74
Mean is 79, median is 81, mode is 85 (three students scored it), standard deviation is 9.8. The mean is pulled below the median by two low scores — the median better represents a typical student here. A teacher using only the mean would underestimate how the majority performed.
Quality control on a production line
Part widths in mm: 50.1, 49.8, 50.3, 50.0, 49.9, 50.2, 50.1, 49.7
Mean is 50.01 mm, standard deviation is 0.19 mm. The tight standard deviation tells the engineer that the process is consistent — no single part is more than 0.3 mm off the mean. If std dev spiked above 0.5 mm, that would signal a machine calibration problem worth investigating immediately.
Comparing two neighborhoods for a real estate decision
Home prices (thousands): 310, 285, 420, 295, 580, 305, 290
Mean is $355,000 but median is only $305,000. The $580,000 outlier is dragging the mean upward by $50,000. A buyer budgeting at the mean would be surprised to find that most homes in the area are priced well below it. Always check both when a market has a few high-priced outliers.
Expert Unlock
The thing most explanations skip

The sample standard deviation formula divides by n-1 because the sample mean is itself estimated from the data, not known independently — this costs one degree of freedom and makes the variance estimate slightly larger to correct for that bias. At large n, the difference between n and n-1 is negligible, but at n=5, dividing by n underestimates the true population spread by about 11%. Analysts working with small samples should be especially careful about which formula their tools use by default.

Why does my mean look wrong when my median is very different?

What is the difference between mean and median and when does it matter?
The mean is the sum of all values divided by the count. The median is the middle value when sorted. They agree closely in symmetric data but diverge when a few extreme values pull the mean in one direction. If you are describing income, home prices, or any data with outliers, the median is usually the more honest summary.
Why does this calculator use n-1 for standard deviation instead of n?
Dividing by n-1 instead of n is called Bessel correction, and it produces an unbiased estimate of the population standard deviation from a sample. If you measured every single item in the population — not just a sample — you would divide by n. In practice, almost all data analysis involves a sample, so n-1 is the correct default. Most statistics courses and tools use n-1 unless explicitly stated otherwise.
What does it mean when there is no mode?
No mode means every value appears exactly once — no number is more common than any other. This is common in continuous measurements like precise weights or temperatures. It does not indicate a problem with your data. When every value appears once, the mode simply provides no useful information about the center of your distribution.

Need something this doesn't cover?

Suggest a tool — we'll build it →