Central Tendency and Dispersion Measures
Enter a comma-separated list of numbers to calculate various statistical measures of dispersion and central tendency.
Explore how to use the calculator with these common scenarios.
Analyzing the spread of test scores in a classroom to understand student performance variability.
Data: 85, 92, 78, 88, 76, 95, 89, 72
Calculating the volatility of a stock based on its monthly returns over a year.
Data: 1.2, -0.5, 2.1, 0.8, -1.9, 1.5, 2.5, -0.2, 0.3, 1.7, -1.1, 2.3
Assessing the consistency of a product's weight in a manufacturing batch.
Data: 502, 499, 505, 498, 501, 503, 497, 500
Evaluating the price variation of houses in a specific neighborhood.
Data: 250000, 275000, 260000, 300000, 285000, 265000, 295000
15, 22, 18, 25, 30, 12
.n
for population, n-1
for sample). This calculator provides both. Use the sample statistics if your data is a subset of a larger group; otherwise, use the population statistics.10, 12, 11, 13, 100
, the outlier 100
will dramatically inflate the range and standard deviation, giving a misleading impression of the overall data spread. In such cases, the Interquartile Range (IQR) is a more robust measure because it focuses on the middle 50% of the data.1, 1, 1, 10
and 1, 5, 6, 10
both have a range of 9, but the first dataset is heavily clustered at the low end, while the second is more evenly spread. This is why using more comprehensive measures like standard deviation is essential.μ = Σx / n
σ = √[ Σ(xᵢ - μ)² / n ]
where xᵢ
is each data point, μ
is the population mean, and n
is the population size.n-1
(Bessel's correction) to provide a better estimate of the population's standard deviation. Formula: s = √[ Σ(xᵢ - x̄)² / (n - 1) ]
where x̄
is the sample mean.IQR = Q3 - Q1