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.
—
Send feedback
💡 Share your idea or report a problem
✓ Thanks! We'll take a look.
Learn more
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.
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?
Need something this doesn't cover?
Suggest a tool — we'll build it →