Exploring Normal Distribution & Central Limit Theorem.
Watch extreme earners physically enter the population, dragging the Mean away from the Median.
Skewness = Σ(X - μ)³ / (N · σ³)
Watch the "shoulders" collapse as mass pushes into the peak and tails (Red Zones).
Kurtosis = Σ(X - μ)⁴ / (N · σ⁴)
*Excess
Kurtosis = Kurtosis - 3
Want to see how your own data holds up? Upload a CSV or TXT file containing numerical data (comma or space separated) to instantly calculate its Skewness and Kurtosis!
The ultimate statistical benchmark. We "morph" any complex data into a simplified Mean=0, SD=1 scale for fair comparison.
Comparing heights in cm (μ=170) vs inches (μ=67) is hard. Standardization "morphs" both into Z-scores so you can compare them apples-to-apples.
Once standardized, any value becomes a Z-score. This allows us to calculate probability (area under the curve) using a standard table.
Z = (X - μ) / σ
Where X is raw value, μ is mean, σ is SD.
The true average value of the entire population.
μ = ΣX / N
Average distance of population points from the mean.
σ = √[ Σ(X-μ)² / N ]
The average value calculated from a specific sample size (n).
x̄ = Σx / n
Estimated spread of the population using (n-1) degrees of freedom.
s = √[ Σ(x-x̄)² / (n-1) ]
Quantifies the precision of the sample mean. Used for calculating Confidence Intervals and conducting Hypothesis Testing.
SE = σ / √n
A precision range that captures the true population mean with a specific level of certainty. The interval width is determined by the Standard Error (SE).
CI = x̄ ± (1.96 * SE)
Sample means follow a Normal Distribution regardless of population shape, if n is large enough.
Allows making inferential predictions about a population without knowing its true distribution shape.