When to use it
Use after Kruskal-Wallis test indicates significant overall group differences.
Required Inputs
- Rank sum matrix or sample groups
- Kruskal-Wallis mean ranks
- Alpha & Multiplicity correction
Perform pairwise rank sum post-hoc comparisons following a significant Kruskal-Wallis test using Dunn's test with Bonferroni or Holm p-value adjustments.
Run this test live in StatLab npm i @statlab/coreUse after Kruskal-Wallis test indicates significant overall group differences.
z = (R̄_i - R̄_j) / √[ (N(N+1)/12) * (1/n_i + 1/n_j) ]
import scikit_posthocs as sp
res = sp.posthoc_dunn(df, val_col='score', group_col='group', p_adjust='holm')
library(FSA)
dunnTest(score ~ group, data = df, method = "holm")
import { dunnTest } from '@statlab/core';
const res = dunnTest(groups);
Continuous A/B testing, statistical telemetry analysis, and automated feedback loops for live backend services.
Explore VoxelPulse →Fixed-price AI release-readiness sprints, automated regression testing, and reliability statistical benchmarks.
Explore VoxelAssurance →Explore static calculators across the StatLab inference engine suite.