Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn committed Aug 15, 2023
1 parent bc8a1e9 commit 3717d52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WORC/featureprocessing/StatisticalTestFeatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3717d52

Please sign in to comment.