From bc19aa354d275652fff297505d268d4f14dbf3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=8Dcaro?= Date: Tue, 18 Aug 2026 18:11:23 +0200 Subject: [PATCH] Update StatTest.py --- statannotations/stats/StatTest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/statannotations/stats/StatTest.py b/statannotations/stats/StatTest.py index b1a4bab..4fa239d 100644 --- a/statannotations/stats/StatTest.py +++ b/statannotations/stats/StatTest.py @@ -124,4 +124,7 @@ def short_name(self): 'Wilcoxon-legacy': StatTest(wilcoxon, 'Wilcoxon test (paired samples)', 'Wilcoxon'), + + 'Kolmogorov-Smirnov': StatTest(stats.kstest, + 'Kolmogorov-Smirnov', 'KStest', alternative='two-sided'), }