Result
Enter data and click Calculate
Paste numbers separated by commas, spaces, or newlines for instant descriptive statistics.
Interactive Charts
No graph yet
Calculate statistics to see interactive charts.
No recently used tools
Loading categories...
Free online summary statistics calculator with instant results. Paste your data to compute mean, median, mode, standard deviation, variance, quartiles, skewness and kurtosis. Includes interactive histogram and box plot, frequency distribution table, and Python scipy export.
Paste numbers separated by commas, spaces, or newlines for instant descriptive statistics.
Calculate statistics to see interactive charts.
Summary statistics (also called descriptive statistics) condense a dataset into a handful of meaningful numbers. Instead of looking at hundreds of raw values, you get three key aspects: where the data centers, how spread out it is, and what shape the distribution takes.
Mean, median, and mode tell you where the “center” of your data lies — the typical or representative value.
Range, variance, standard deviation, and IQR measure how spread out values are around the center.
Skewness and kurtosis reveal whether data is symmetric, skewed, or has heavy/light tails.
The arithmetic mean sums all values and divides by the count. It uses every data point, making it sensitive to outliers.
The median is the middle value of sorted data. For even n, it averages the two middle values. Resistant to outliers.
The mode is the value that appears most often. Data can be unimodal, bimodal, multimodal, or have no mode.
| Measure | Best For | Limitation |
|---|---|---|
| Mean | Symmetric data, no outliers | Distorted by extreme values |
| Median | Skewed data, outliers present | Ignores actual values of extremes |
| Mode | Categorical data, finding peaks | May not exist or be unique |
For normally distributed data:
| |Skewness| | Interpretation |
|---|---|
| < 0.5 | Approximately symmetric |
| 0.5 – 1.0 | Moderately skewed |
| > 1.0 | Highly skewed |
Normal distribution shape. Tails contain roughly the expected proportion of data.
Peaked with heavy tails. More extreme values (outliers) than normal. Example: stock returns.
Flat with light tails. Fewer extreme values than normal. Example: uniform-like data.
The box plot (box-and-whisker) visualizes the five-number summary. The box spans Q1 to Q3 (the middle 50% of data), the line inside marks the median, and whiskers extend to the most extreme non-outlier values. Points beyond the fences appear as individual dots.