Statistics Calculator
Sorted: 2, 4, 4, 4, 5, 5, 7, 9
| Statistic | Value |
|---|---|
| Count (n) | 8 |
| Sum | 40 |
| Mean | 5 |
| Median | 4.5 |
| Mode | 4 |
| Range | 7 |
| Minimum | 2 |
| Maximum | 9 |
| Population variance (σ²) | 4 |
| Sample variance (s²) | 4.571429 |
| Population std dev (σ) | 2 |
| Sample std dev (s) | 2.13809 |
| Standard error of mean | 0.755929 |
| Skewness | 0.818488 |
| Q1 | 4 |
| Q2 (median) | 4.5 |
| Q3 | 5.5 |
| IQR | 1.5 |
x̄ = Σx / n
Descriptive Statistics Explained
Descriptive statistics summarize a dataset without drawing conclusions about a larger population — that is inferential statistics. This calculator accepts a list of numbers (comma or space separated) and returns the full suite of common summary measures in one pass. Whether you are analyzing test scores, survey responses, sensor readings, or financial returns, these metrics describe the center, spread, and shape of your data.
Central tendency measures locate the "middle" of the data. The mean (arithmetic average) is the sum divided by count — sensitive to outliers. The median is the middle value when sorted; for even counts it averages the two central values. The mode is the most frequent value; a dataset can have zero, one, or many modes. Use the dedicated average calculator or median calculator for quick single-metric checks; this tool shows all three together for comparison.
Spread measures describe variability. Range = max − min is simple but outlier-sensitive. Variance averages squared deviations from the mean; sample variance divides by n − 1 (Bessel's correction) for unbiased estimation, while population variance divides by n. Standard deviation is the square root of variance, restoring original units. The standard deviation calculator focuses on SD alone; here you get both population and sample versions plus standard error SE = s / √n for inference.
Quartiles divide sorted data into four parts: Q1 (25th percentile), Q2 (median, 50th), Q3 (75th). The interquartile range IQR = Q3 − Q1 captures the middle 50% and supports outlier detection via the 1.5 × IQR rule. Skewness measures asymmetry: positive skew means a long right tail (mean > median), negative skew a long left tail. A symmetric bell-shaped distribution has skew near zero.
Enter your data and review count, sum, min, max, sorted order, and all computed statistics simultaneously. Results feed directly into the confidence interval calculator (mean, SD, n), z-score calculator (standardize individual values), and sample size calculator (plan future studies). For large datasets, paste from spreadsheets; the parser handles commas, spaces, and mixed separators.
Understanding which summary to report depends on context: report median and IQR for skewed income data; mean and SD for roughly normal measurements. This calculator makes no distributional assumptions — it computes exactly what your numbers imply — leaving interpretation to you and your statistical workflow.
Outlier detection tip: values below Q1 − 1.5 × IQR or above Q3 + 1.5 × IQR are often flagged as outliers in box-plot conventions. After summarizing, export mean, sample SD, and n to the confidence interval and sample size tools for inferential follow-up on the same dataset.
Examples
| Example | Result |
|---|---|
| Mean of 2, 4, 6, 8 | 5 |
| Median of 1, 3, 3, 9 | 3 |
| SD of 10, 20, 30 | σ ≈ 8.16 (population) |
| Range of 5, 12, 3, 20 | 17 |
| Quartiles of 1..9 | Q1=2.5, Q2=5, Q3=7.5 |
| Count of 1, 2, 2, 3 | n = 4, mode = 2 |
| Sum of 100, 200, 300 | 600 |
Frequently asked questions
Sample SD divides by n − 1 (Bessel's correction) for unbiased estimation from a sample. Population SD divides by n.
Sort the values and average the two middle numbers. For 1, 2, 3, 4 the median is (2 + 3) / 2 = 2.5.
SE = sample SD / √n estimates how much the sample mean would vary across repeated samples.