Statistics Calculator
Paste numbers from Excel, Google Sheets or any column — commas, spaces, newlines and tabs all accepted. Instantly calculates mean, median, mode, standard deviation (sample & population), variance, IQR, quartiles, outliers with z-scores, skewness, kurtosis and a frequency distribution table. CSV export included.
Statistics Calculator Tool
| Value | Z-score | |Z| > 3? | IQR outlier? |
|---|
| Value | Frequency | Relative freq. | Cumulative freq. | Bar |
|---|
Rate this tool
Paste from Excel, frequency tables, outlier detection — what most stat calculators skip
Most statistics calculators require comma-separated input and show a handful of results. This tool accepts columns pasted directly from spreadsheets, shows sample and population statistics side by side, produces a frequency distribution table automatically, and flags every outlier by both IQR and z-score methods.
How to calculate descriptive statistics
LazyTools vs other statistics calculators
Most free statistics calculators compute mean, median, mode and standard deviation. The ability to paste Excel columns, get a frequency distribution table and see IQR + z-score outlier detection in one tool are the key differentiators.
| Feature | ⭐ LazyTools | CalculatorSoup | StatTrek | calculator.net |
|---|---|---|---|---|
| Mean, median, mode, range | ✔ | ✔ | ✔ | ✔ |
| Sample AND population stats | ✔ Side by side | ✔ | ✔ | ✔ |
| Paste from Excel / newline input | ✔ | ⚠ Comma only | ⚠ Comma only | ⚠ Space/comma |
| Frequency distribution table | ✔ With bar chart | ✔ | ✘ | ✘ |
| Outlier detection (IQR method) | ✔ | ✔ | ✘ | ✔ |
| Z-score per data point | ✔ | ✘ | ✘ | ✘ |
| Skewness & kurtosis | ✔ | ✔ | ✔ | ✘ |
| CSV export of all results | ✔ | ✘ | ✘ | ✘ |
| No ads / no signup | ✔ | ⚠ Ads | ⚠ Ads | ⚠ Ads |
Comparison based on publicly available features as of April 2026.
Descriptive statistics formulas
| Measure | Formula | When to use |
|---|---|---|
| Mean | Σx / n | Symmetric data without outliers. Sensitive to extreme values. |
| Median | Middle value of sorted data | Skewed data or data with outliers. Robust to extremes. |
| Mode | Most frequent value | Categorical data; also meaningful for peaked distributions. |
| Range | Max − Min | Simple spread measure. Sensitive to outliers. |
| Sample std dev (s) | √[Σ(x−x̄)² / (n−1)] | Data is a sample from a larger population (Bessel’s correction). |
| Population std dev (σ) | √[Σ(x−μ)² / n] | Data represents the entire population. |
| IQR | Q3 − Q1 | Robust spread measure. Used for outlier detection. |
| IQR outlier fence | Q1−1.5×IQR to Q3+1.5×IQR | Tukey’s rule: values outside fences are potential outliers. |
| Z-score | (x − mean) / std dev | Measures how many standard deviations x is from the mean. |z| > 3 = extreme outlier. |
| Skewness | [n/((n−1)(n−2))] Σ((x−x̄)/s)³ | Distribution shape: 0 = symmetric, + = right tail, − = left tail. |
| Kurtosis (excess) | Sample kurtosis − 3 | Tail heaviness. 0 = normal. + = heavy tails (more outliers). |
Descriptive Statistics — A Complete Guide to Mean, Median, Mode, Standard Deviation and Outliers
Descriptive statistics summarise a dataset by capturing its central tendency, spread, shape and any anomalies. Unlike inferential statistics — which draw conclusions about populations from samples — descriptive statistics simply describe the data at hand. They are the starting point for any data analysis: before fitting a model, testing a hypothesis or making a business decision, you need to understand what your data looks like.
Mean median mode standard deviation calculator free
Mean is the arithmetic average: sum all values and divide by count. It is the most widely used measure of central tendency but is sensitive to outliers — a single extreme value can pull the mean far from the “typical” value. Median is the middle value when data is sorted, and is robust to outliers. For salary data with a few high earners, the median is usually a better “typical” salary than the mean. Mode is the most frequent value — useful for categorical data and peaked distributions. A dataset can have no mode (all values unique), one mode, or multiple modes. Standard deviation measures average distance from the mean. A small SD means values cluster tightly; a large SD means values are spread out.
Descriptive statistics calculator for any dataset
The full set of descriptive statistics for a dataset typically includes: count (n), sum, minimum, maximum, range, mean, median, mode, first quartile (Q1), third quartile (Q3), interquartile range (IQR), sample standard deviation, population standard deviation, sample variance, population variance, standard error of the mean (SEM), coefficient of variation (CV), skewness and kurtosis. This tool computes all of these simultaneously. The five-number summary (min, Q1, median, Q3, max) gives a complete picture of a dataset’s distribution and is the basis of a box-and-whisker plot.
Statistics calculator paste numbers from Excel
A common frustration with online statistics calculators is that they require comma-separated input, which means copying a column from Excel and reformatting it. This tool accepts any numeric separator — commas, spaces, newlines and tabs — so you can select an entire column in Excel or Google Sheets, copy it (Ctrl+C), paste it into the input (Ctrl+V), and click Calculate without any reformatting. Negative numbers, decimals, and numbers with thousands separators are all handled automatically.
Sample variance calculator online
The distinction between sample and population standard deviation is one of the most commonly confused aspects of statistics. Population standard deviation (σ) divides by n and is used when your dataset is the entire population. Sample standard deviation (s) divides by n−1 (Bessel’s correction) and is used when your data is a sample from a larger population — which is the case in almost all practical statistics. Dividing by n−1 makes the sample standard deviation an unbiased estimator of the population standard deviation. This tool shows both simultaneously so you can use whichever is appropriate for your context.
Z-score calculator free
A z-score measures how many standard deviations a value is above or below the mean: z = (x − mean) / sample SD. A z-score of 0 means the value equals the mean. A z-score of +2 means the value is 2 standard deviations above the mean. Values with |z| > 3 are extreme outliers — in a normally distributed dataset, fewer than 0.3% of values fall more than 3 standard deviations from the mean. This tool calculates the z-score for every data point and flags those with |z| > 3.
Interquartile range calculator online
The interquartile range (IQR) is the range of the middle 50% of a dataset: IQR = Q3 − Q1. It is a robust measure of spread — unlike the standard deviation, it is not distorted by outliers. Q1 (the first quartile, 25th percentile) is the median of the lower half of the sorted data. Q3 (the third quartile, 75th percentile) is the median of the upper half. Tukey’s outlier detection rule: values below Q1−1.5×IQR or above Q3+1.5×IQR are considered potential outliers. Values beyond Q1−3×IQR or Q3+3×IQR are extreme outliers.