1001Ferramentas
🧮Calculators

Basic Statistics Calculator

From a list of numbers, compute mean, median, mode, min, max, sum, standard deviation and variance (population and sample). Everything in your browser.

N
Sum
Mean
Median
Mode
Min
Max
Range
Std dev (pop)
Std dev (sample)
Variance (pop)
Variance (sample)

Descriptive statistics: summarizing data

Descriptive statistics boil a dataset down to a few numbers: measures of central tendency (mean, median, mode), of dispersion (min, max, range = max − min, variance, standard deviation), and of shape (skewness, kurtosis). The coefficient of variation CV = σ / μ is dimensionless, which is what lets you compare dispersion across populations measured on different scales. The split between population and sample variance comes down to the denominator. The population formula is σ² = Σ(xᵢ − μ)² / N, while the sample one is s² = Σ(xᵢ − x̄)² / (n − 1); Bessel's correction divides by n − 1 so that s² stays an unbiased estimator. Run [2, 4, 4, 4, 5, 5, 7, 9] through it and you get mean 5, median 4.5, mode 4, sample s ≈ 2.14.

Applications

Scientific research leans on it, and so does exploratory data analysis (EDA), the thing you do before fitting any model — usually a quick pandas.describe() or R's summary(). From there it spreads into sample planning, quality control (process capability), market research, and the KPIs that fill reports.

FAQ

Population or sample variance? Go with population when your data is the whole thing — every employee at the company, for instance. Switch to the sample version (n − 1) when you only have a subset and want to infer something about the larger population. That's Bessel's correction doing its job.

What does the coefficient of variation tell me? It captures dispersion relative to the mean. A CV of 10% says the standard deviation is one tenth of the mean. Once you cross CV > 30% you're looking at high variability. Just remember the measure breaks down when the mean sits close to zero.

Mean or median? Outliers drag the mean around, whereas the median barely budges. With skewed distributions like income or real estate prices, the median paints the typical case far more honestly. Brazilian household income is the textbook example of this.

Descriptive statistics of a list

When a list of numbers shows up, the opening questions almost always repeat. What's the average? The middle value? How much do they swing? The calculator answers all of it at once, running the full descriptive statistics of the set you paste.

Out come mean, median, mode, minimum, maximum and sum. Out come the standard deviation and variance too, these in both versions, population and sample, a distinction that weighs in academic work. Anyone studying statistics, analysing experiment data or simply trying to make sense of a handful of measurements finds what they need here.

The data never leaves the browser, since it's all worked out right here. Paste the numbers separated by space, semicolon, comma or line break and the metrics appear all at once. A decimal comma is understood when the whole series uses it (3,5 4,2 gives two values); in a mixed series the comma goes back to being a separator.

Frequently asked questions

Can I use a comma as the decimal separator?
No. The comma acts as a separator between numbers, alongside spaces, line breaks and semicolons. Typing 3,5 turns into two values, 3 and 5, and the mean comes out wrong with no warning on screen. Use a dot: 3.5. The quickest way to spot the problem is to check N right after pasting — if it reads higher than the number of measurements you have, the decimal mark is the suspect.
Why does the mode show up as a dash?
Because no value repeated. The mode only appears when some number turns up at least twice; in a set of all-distinct values, listing everything would say nothing, so the field keeps a dash. When two or more values tie for most frequent, all of them appear separated by commas, which is what a bimodal distribution looks like. In the sample already sitting in the box, 4 repeats three times and becomes the mode.
What happens to text or an empty cell among the numbers?
It vanishes from the calculation, silently. The content gets split at the separators and each piece goes through a numeric conversion: a lone kg is discarded, while 10kg comes in as 10, because reading stops at the first character that is not a digit. That is why pasting a spreadsheet column with a header usually works. Even so, always check N: it is the only place that reveals how many values really made it into the maths.

Related Tools

📊

List Statistics

Calculate complete statistics for a list of numbers: sum, mean, median, mode, min, max, range and standard deviation.

📊

CI for Variance and Standard Deviation

Computes the confidence interval for the variance and standard deviation of a normal population, from a sample. While most tools estimate the mean, this one estimates the spread — useful in quality control, where consistency matters as much as the central value. The calculation uses the chi-square distribution, which is asymmetric, so the interval is not centered on the sample variance. Enter the sample and the confidence level.

🎯

Hodges-Lehmann Estimator

Computes the Hodges-Lehmann estimator of a sample's location, a robust alternative to both the mean and the median. It's defined as the median of all pairwise averages (the so-called Walsh averages) among the values, including each value with itself. The result combines the median's resistance to outliers with greater efficiency when the data are nearly normal. It's the estimator associated with the Wilcoxon signed-rank test. Enter the sample of values.

📉

One-Sample Variance Test (Chi-Square)

Computes the chi-square test for the variance of a single sample, which checks whether the population variance equals a reference value. It's the dispersion counterpart of the one-sample t-test for the mean. It shows up often in quality control: is a process's variability within the specified limit, or has it increased? The statistic compares the sample variance with the hypothesized one and follows a chi-square distribution. Enter the sample and the hypothesized variance (σ₀²).

📐

Range, Variance and Standard Deviation

Paste a comma-separated list of 2 or more numbers to get max minus min, the sample variance s² with the Bessel n-1 divisor, and the sample s.

📈

Exact CI for a Poisson Mean

Computes the exact confidence interval for the mean of a Poisson distribution, from an observed event count. It's the right tool for count data: number of defects per batch, accidents per month, particles detected per interval. The calculation uses the exact relationship between the Poisson and the chi-square distribution (Garwood's method), giving reliable bounds even when very few events were observed. Enter the number of events and the confidence level.

The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.