From dad837ace18157ee61b8c53fb2ba667220f32a30 Mon Sep 17 00:00:00 2001 From: herb Date: Fri, 6 Nov 2015 10:35:37 -0800 Subject: compare has a syntax error where it is missing the path to sem(). BUG=skia: Review URL: https://codereview.chromium.org/1420963010 --- bin/compare | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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) -- cgit v1.2.3