Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: bin/compare

Issue 1420963010: compare has a syntax error where it is missing the path to sem(). (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/compare
diff --git a/bin/compare b/bin/compare
index 95d4100e950a22182ed3e58e15913f3e1611e4c1..794cb724e0713f30e554d3e1099559f6edeceef5 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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698