From 3717d527e7819809adcf247efa078864109b70b0 Mon Sep 17 00:00:00 2001 From: Martijn Date: Tue, 15 Aug 2023 10:08:27 +0200 Subject: [PATCH] Typo fix --- WORC/featureprocessing/StatisticalTestFeatures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WORC/featureprocessing/StatisticalTestFeatures.py b/WORC/featureprocessing/StatisticalTestFeatures.py index 6d251f65..7a90dfd2 100644 --- a/WORC/featureprocessing/StatisticalTestFeatures.py +++ b/WORC/featureprocessing/StatisticalTestFeatures.py @@ -154,7 +154,7 @@ def StatisticalTestFeatures(features, patientinfo, config, output_csv=None, try: pmwu = mannwhitneyu(class1, class2)[1] if pmwu == 0.0: - print("[WORC Warning] Mann-Whtiney U test resulted in a p-value of exactly 0.0, which is not valid. Replacing metric value by NaN.") + print("[WORC Warning] Mann-Whitney U test resulted in a p-value of exactly 0.0, which is not valid. Replacing metric value by NaN.") pvaluesmw.append(np.nan) else: pvaluesmw.append(pmwu)