Data Tab Statistics Calculator

What does your list of numbers actually say about itself?

Paste or type a list of numbers — one per line or comma-separated — and get a full descriptive statistics summary instantly. Covers mean, median, mode, range, variance, and standard deviation.

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

Think of descriptive statistics as a quick profile of your data — like a doctor taking vitals before a full examination. The mean tells you where the center of gravity is. The median tells you where the physical midpoint is. When those two numbers are close together, your data is roughly symmetric. When they diverge, something interesting is happening at one end of the distribution.

Standard deviation is the hardest of these to internalize, but the intuition is simple: it measures how much the typical value differs from the average. A low standard deviation means your values cluster tightly around the mean. A high one means they are spread far apart. In practical terms, if you are looking at test scores with a mean of 70 and a standard deviation of 3, almost everyone scored between 67 and 73. If standard deviation is 18, scores ranged wildly from below 50 to above 90.

Range gives you the total spread from smallest to largest, but it is sensitive to a single outlier at either extreme. Variance is the square of the standard deviation — useful for mathematical work but harder to interpret directly because the units are squared. Sum and count are the raw materials everything else is built from, and they are worth double-checking against your source data to catch any missing values before drawing conclusions.

When To Use This
Right tool, right situation

Use this tool when you have a raw list of numbers and need a quick read on their central tendency and spread before doing anything more involved. It is well-suited to spot-checking survey responses, reviewing a column of measurements, validating that a dataset looks reasonable, or preparing a verbal summary without opening a spreadsheet. The checkbox for population versus sample is the one decision that materially changes your results, and most uses involving real-world samples should leave it unchecked.

This tool is less appropriate when your data has a meaningful time dimension — monthly sales figures, stock prices, or patient readings over a course of treatment. Descriptive statistics flatten the time axis entirely, so a mean of 50 across twelve months tells you nothing about whether the trend was rising, falling, or erratic. For time-series data, use a tool that explicitly handles sequence.

It is also not appropriate as a substitute for inferential statistics when you need to draw conclusions about a population from your sample. A mean of 62 and a standard deviation of 8 tells you about your specific dataset; it does not tell you whether the true population mean is significantly different from 60 without a hypothesis test. This tool gives you the inputs for those tests, not the tests themselves.

Common Mistakes
Why results sometimes look wrong

Using mean to summarize skewed data. The most common mistake is reporting mean as the representative value when the distribution is asymmetric. Income data is the textbook example: a few extremely high earners pull the mean well above what most people actually earn. The cause is treating mean as equivalent to typical, which it only is when data is roughly symmetric. The consequence is misleading summaries that describe a population most members would not recognize. Always compare mean and median before choosing which to report.

Treating a small sample standard deviation as proof of precision. A standard deviation of 0.2 sounds reassuringly tight, but if n is 3, it is nearly meaningless. Small samples produce unreliable estimates of spread. The sample formula with n minus 1 helps correct for this mathematically, but no formula compensates for genuinely insufficient data. If your count is below 20 and you are making decisions based on standard deviation, treat the result as provisional.

Ignoring the count when pasting data. People frequently paste data from spreadsheets and accidentally include header rows, blank rows, or summary rows at the bottom. The count output here is your first sanity check — if it does not match the number of rows you expected to paste, non-numeric tokens were present or rows were missed. Always verify n before using any other statistic.

The Math
Worked examples and deeper derivation

The mean is the sum of all values divided by the count: mean = (x1 + x2 + ... + xn) / n. The median is the middle value when data is sorted in order; for an even-count dataset it is the average of the two middle values. Mode is the value (or values) that appear most frequently.

Sample variance is calculated as the sum of squared deviations from the mean, divided by n minus 1: s squared = sum((xi minus mean) squared) / (n minus 1). The minus 1 correction — Bessel's correction — accounts for the fact that a sample tends to underestimate the true spread of the full population. Population variance uses n in the denominator instead. Standard deviation is simply the square root of variance, which converts it back to the original units of measurement.

Range is maxVal minus minVal — straightforward but fragile. A single outlier at either end stretches range dramatically while leaving median and standard deviation relatively unaffected. For this reason, analysts often report interquartile range (IQR) alongside range to describe spread more robustly. IQR is beyond the scope of this tool but is worth calculating separately when outliers are a concern.

Grading a class quiz — checking whether scores cluster around the pass mark
20 quiz scores entered: 48, 52, 61, 74, 55, 63, 72, 68, 45, 59, 71, 66, 53, 78, 60, 57, 64, 70, 49, 55
Mean comes out at 61.95, median at 62, and mode at 55. The tight gap between mean and median tells you the distribution is close to symmetric — no heavy skew from outliers. Sample standard deviation of roughly 9.2 means about two-thirds of students scored between 52.75 and 71.15. A teacher reviewing this would feel confident the class is clustered right around the pass mark and one or two extra revision sessions would move the tail.
Comparing server response times to spot an anomaly
10 latency readings in milliseconds: 120, 118, 122, 119, 121, 117, 450, 123, 120, 119
Mean is 152.9 ms but median is only 120 ms — a 32 ms gap that flags the single outlier (the 450 ms spike) immediately. The range jumps to 333 ms, and standard deviation inflates to over 100 ms even though nine of the ten readings are tightly bunched between 117 and 123. This is the practical value of comparing mean and median: a median close to the cluster and a mean pulled away tells you an outlier is distorting the average, which a single summary number would hide.
A small business owner checking weekly sales figures before a board meeting
12 weekly revenue figures in thousands: 18.4, 21.2, 19.8, 22.6, 20.1, 17.9, 23.4, 21.0, 19.5, 24.1, 20.8, 22.3
Mean weekly revenue is $20,925, median is $20,950 — nearly identical, which tells the owner the business has had no blow-out weeks or catastrophic dips. Standard deviation of about $1,850 means most weeks land between $19,075 and $22,775. With a range of $6,200 and no visible mode (all weeks unique), the owner can walk into the meeting saying performance is consistent and predictable — neither claim needs a spreadsheet to back it up.
Expert Unlock
The thing most explanations skip

The formula for sample standard deviation assumes observations are independent and identically distributed. In practice, correlated observations — repeated measures on the same subject, clustered samples, or autocorrelated time-series data — violate this assumption and make the computed standard deviation an underestimate of true variability. The math still runs without error, but the result carries less information than it appears to. Practitioners working with panel data, longitudinal studies, or clustered survey designs should apply corrections before interpreting spread statistics from raw column summaries.

Mode is also more subtle than it looks in multimodal distributions. If your data has two distinct peaks — a bimodal distribution, common in datasets mixing two populations — the reported mode may be one of two equally frequent values, and this tool surfaces both. But the more useful insight is that a bimodal dataset probably should not be summarized with a single mean or standard deviation at all; it should be split and analyzed as two separate groups.

What do these statistics actually tell you about your data?

What is the difference between sample and population standard deviation?
Sample standard deviation divides the squared differences by n minus 1 (called Bessel's correction), while population standard deviation divides by n. The sample formula is used when your data is a subset drawn from a larger group, which is almost always the case in practice. The population formula is only appropriate when your dataset is every single value that exists — for example, the exact heights of all 12 players on a specific basketball team, with no intention to generalize beyond that team.
Why is my mean so different from my median?
A large gap between mean and median is the clearest sign of skew or outliers in your data. The mean is pulled toward extreme values; the median is not. If your mean is significantly higher than your median, a few large values are inflating the average. If median exceeds mean, a few unusually small values are dragging it down. In datasets like income or house prices, median is almost always the more representative central value.
My data has no mode — is that a problem?
Not at all. When every value appears exactly once, mode is technically undefined, and this calculator reports that plainly. Mode is most useful with discrete data (whole-number counts, ratings, categories) where repetition is expected. For continuous measurements like temperature readings or financial figures, mode often tells you nothing useful. The more informative measures for continuous data are mean, median, and standard deviation.

Need something this doesn't cover?

Suggest a tool — we'll build it →