Summary Statistics Calculator
Mean · median · mode · SD · quartiles · histogram
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.
Python Compiler
What Are Summary Statistics?
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.
Central Tendency
Mean, median, and mode tell you where the “center” of your data lies — the typical or representative value.
Dispersion
Range, variance, standard deviation, and IQR measure how spread out values are around the center.
Distribution Shape
Skewness and kurtosis reveal whether data is symmetric, skewed, or has heavy/light tails.
Measures of Central Tendency
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.
When to Use Each Measure
| 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 |
Measures of Dispersion
Worked Example
Step 1: Mean = (2+4+4+4+5+5+7+9)/8 = 40/8 = 5
Step 2: Deviations from mean: −3, −1, −1, −1, 0, 0, 2, 4
Step 3: Squared deviations: 9, 1, 1, 1, 0, 0, 4, 16
Step 4: Sum of squares = 32
Step 5: Variance (sample) = 32/(8−1) = 4.5714
Step 6: SD = √4.5714 = 2.1381
The 68–95–99.7 Rule (Empirical Rule)
For normally distributed data:
Understanding Distribution Shape
Skewness
| |Skewness| | Interpretation |
|---|---|
| < 0.5 | Approximately symmetric |
| 0.5 – 1.0 | Moderately skewed |
| > 1.0 | Highly skewed |
Kurtosis
Mesokurtic (k ≈ 0)
Normal distribution shape. Tails contain roughly the expected proportion of data.
Leptokurtic (k > 0)
Peaked with heavy tails. More extreme values (outliers) than normal. Example: stock returns.
Platykurtic (k < 0)
Flat with light tails. Fewer extreme values than normal. Example: uniform-like data.
Quartiles & Box Plots
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.