diff options
author | herb <herb@google.com> | 2015-11-06 10:35:37 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-06 10:35:37 -0800 |
commit | dad837ace18157ee61b8c53fb2ba667220f32a30 (patch) | |
tree | 4de54d94efd9edde8f790a397f86e4c4456a6e0c /bin/compare | |
parent | a7627dc5cc2bf5d9a95d883d20c40d477ecadadf (diff) |
compare has a syntax error where it is missing the path to sem().
BUG=skia:
Review URL: https://codereview.chromium.org/1420963010
Diffstat (limited to 'bin/compare')
-rwxr-xr-x | bin/compare | 2 |
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) |