Explore the mathematical mechanics and robustness of One-Way ANOVA, Kruskal-Wallis, t-tests, and Mann-Whitney U tests under skewed distributions and extreme outliers.
Adjust skewness or inject an extreme outlier to observe how One-Way ANOVA (Mean-based $F$-test) breaks down while Kruskal-Wallis (Rank-based $H$-test) remains robust.
Both tests produce valid statistics under normal distributions. Observe what happens when an extreme outlier is injected.
| Value | Group | Assigned Rank |
|---|
Compare the Independent Samples t-test (Parametric) with the Mann-Whitney U Test (Non-parametric Wilcoxon Rank-Sum).
The t-test relies directly on sample means $ar{X}_1, ar{X}_2$ and pooled variance. A single extreme outlier dramaticallyinflates sample variance and pulls the mean. Mann-Whitney U converts values to ranks $(1, 2, \dots, N)$, capping the maximum influence of any extreme point to its rank position $N$.
| Design Context | Parametric Test (Normal Data / Scale) |
Non-Parametric Test (Skewed / Ordinal / Ranks) |
|---|---|---|
| 2 Independent Groups | Independent Samples t-test | Mann-Whitney U Test (Wilcoxon Rank-Sum) |
| 3+ Independent Groups | One-Way ANOVA | Kruskal-Wallis H Test |
| 2 Paired / Repeated Measures | Paired Samples t-test | Wilcoxon Signed-Rank Test |
| 3+ Paired / Repeated Measures | Repeated Measures ANOVA | Friedman Test |