Skip to main content

Descriptive Statistics & Hypothesis Tests

Descriptive statistics and statistical hypothesis tests covering parametric (t-tests, ANOVA), non-parametric (Mann-Whitney, Kruskal-Wallis, Friedman), correlation, and categorical association tests.

37 procedures. Every result is computed by the open Python engine and is exportable to APA tables and reports.

ProcedureWhat it doesStatusKey reference
Descriptive statisticsMean, median, variance, skewness, kurtosis, quantiles for numeric variables.✅ FullVirtanen et al. (2020)
Frequency distributionFrequency tables with counts, percentages, cumulative percentages for categorical/numeric variables.✅ FullVirtanen et al. (2020)
One-sample t-testTest if sample mean differs from hypothesized value; reports t-statistic, 95% CI, Cohen's d.✅ FullStudent (1908)
Independent samples t-testCompare means of two independent groups; includes Levene's test, optional Welch correction.✅ FullStudent (1908); Welch (1947)
Paired t-testCompare means of two related/paired samples; reports difference mean, SE, 95% CI, effect size.✅ FullStudent (1908)
One-way ANOVACompare means across 3+ groups; includes Levene's test, Tukey HSD post-hoc, eta/omega-squared.✅ FullFisher (1925); Tukey (1949)
Welch's ANOVAHeteroscedastic one-way ANOVA without equal-variance assumption; Games-Howell post-hoc.✅ FullWelch (1951); Games & Howell (1976)
Two-way ANOVATest main effects and interaction of two factors; includes partial eta-squared effect sizes.✅ FullFisher (1925)
Repeated measures ANOVAWithin-subjects ANOVA for 2+ repeated measures; Mauchly sphericity, GG/HF corrections.✅ FullFisher (1925); Mauchly (1940)
Yuen's trimmed t-testRobust two-group t-test using 20% trimmed means; insensitive to heavy tails and outliers.✅ FullYuen (1974)
Mixed ANOVASplit-plot design: between-subject factor and within-subject repeated measures.✅ FullFisher (1925); Mauchly (1940)
Dunnett's testPost-hoc test comparing each treatment group to a control group.✅ FullDunnett (1955)
Cochran-Armitage testTrend test for proportions across ordered groups.✅ FullCochran (1954); Armitage (1955)
Mann-Whitney U testNon-parametric two-group test; exact/asymptotic p-values, rank-biserial effect size.✅ FullMann & Whitney (1947)
Wilcoxon signed-rank testNon-parametric paired test; exact/asymptotic p-values, effect size r.✅ FullWilcoxon (1945)
Kruskal-Wallis H testNon-parametric 3+ group test; Dunn post-hoc with Bonferroni correction.✅ FullKruskal & Wallis (1952); Dunn (1964)
Friedman testNon-parametric repeated measures test; Kendall's W effect size.✅ FullFriedman (1937)
Chi-square test of independenceAssociation between two categorical variables; includes Cramér's V, Yates correction disclosure.✅ FullPearson (1900); Campbell (2007)
Chi-square goodness-of-fitTest if observed distribution matches expected frequencies.✅ FullPearson (1900)
Fisher's exact testExact test for 2x2 contingency table; alternative: one/two-sided.✅ FullFisher (1935); Irwin (1935)
Pearson correlation matrixPairwise Pearson/Spearman/Kendall correlations with p-values; listwise NA handling.✅ FullPearson (1895); Spearman (1904)
Correlation (pairwise)Single correlation with confidence interval (Fisher z-transform for Pearson).✅ FullPearson (1895); Spearman (1904)
Partial correlationCorrelation between two variables controlling for others; corrected df.✅ FullPearson (1895); Yule (1907)
Effect size calculatorCohen's d/Hedges' g, eta/omega-squared, Cramér's V, Fisher's f-squared.✅ FullCohen (1988)
Power analysisSample size / power calculation for t-test, ANOVA, correlation, chi-square, regression.✅ FullCohen (1988)
Sign testNon-parametric paired/one-sample test; binomial test on signs of differences.✅ FullDixon & Mood (1946)
Runs testWald-Wolfowitz test for randomness; dichotomize by median/mean or threshold.✅ FullWald & Wolfowitz (1940)
McNemar testChange detection in paired binary outcomes; 2x2 table symmetry.✅ FullMcNemar (1947)
Cochran Q testNon-parametric repeated measures for binary outcomes (3+ measurements).✅ FullCochran (1950)
Jonckheere-Terpstra testNon-parametric alternative to ANOVA for ordered groups (monotonic trend).✅ FullJonckheere (1954); Terpstra (1952)
Kendall's WCoefficient of concordance for 2+ judges/raters across multiple items.✅ FullKendall & Babington Smith (1939)
Kendall's tauRank correlation between two variables (tau-b for ties).✅ FullKendall (1938)
Mood's median testNon-parametric k-group test based on median; robust to outliers.✅ FullMood (1954)
Permutation testPermutation-resampling test (10000 permutations); mean difference or custom statistic.✅ FullVirtanen et al. (2020)
Kernel density estimateNon-parametric density estimation; Scott/Silverman bandwidth, Gaussian kernel.✅ FullVirtanen et al. (2020)
MANOVAMultivariate analysis of variance; Wilks' lambda, Pillai, Hotelling-Lawley, Roy's root.✅ FullWilks (1932); Pillai (1955)
Distribution fitting + GOFFit Exponential-Family and related distributions (gamma, exponential, lognormal, Weibull, normal) by MLE, rank by AIC, and test fit with Kolmogorov-Smirnov. Matches R MASS::fitdistr + ks.test.✅ FullMassey (1951); Lilliefors (1967)