[LNT] r208738 - Remove the excrescent argument MWU

Yi Kong Yi.Kong at arm.com
Tue May 13 15:30:30 PDT 2014


Author: kongyi
Date: Tue May 13 17:30:30 2014
New Revision: 208738

URL: http://llvm.org/viewvc/llvm-project?rev=208738&view=rev
Log:
Remove the excrescent argument MWU

Modified:
    lnt/trunk/lnt/util/stats.py

Modified: lnt/trunk/lnt/util/stats.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/util/stats.py?rev=208738&r1=208737&r2=208738&view=diff
==============================================================================
--- lnt/trunk/lnt/util/stats.py (original)
+++ lnt/trunk/lnt/util/stats.py Tue May 13 17:30:30 2014
@@ -30,7 +30,7 @@ def mannwhitneyu(a, b, sigLevel = .05):
     else:
         try:
             # MWU in SciPy is one-sided, multiply by 2 to get two-sided.
-            p = mannwhitneyu_large(a, b, False) * 2
+            p = mannwhitneyu_large(a, b) * 2
             return p >= sigLevel
         except ValueError:
             return True





More information about the llvm-commits mailing list