aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2015-11-06 10:35:37 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-06 10:35:37 -0800
commitdad837ace18157ee61b8c53fb2ba667220f32a30 (patch)
tree4de54d94efd9edde8f790a397f86e4c4456a6e0c /bin
parenta7627dc5cc2bf5d9a95d883d20c40d477ecadadf (diff)
compare has a syntax error where it is missing the path to sem().
Diffstat (limited to 'bin')
-rwxr-xr-xbin/compare2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/compare b/bin/compare
index 95d4100e95..794cb724e0 100755
--- a/bin/compare
+++ b/bin/compare
@@ -45,7 +45,7 @@ for key in common:
am, bm = m(a[key]), m(b[key])
if have_scipy:
_, p = scipy.stats.mannwhitneyu(a[key], b[key])
- asem, bsem = scipy.stats.sem(a[key]), sem(b[key])
+ asem, bsem = scipy.stats.sem(a[key]), scipy.stats.sem(b[key])
ps.append((bm/am, p, key, am, bm, asem, bsem))
ps.sort(reverse=True)