Skip to content

Commit 9a88340

Browse files
committed
include multiple methods in example
1 parent ac09d6e commit 9a88340

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

example.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
a = load('a.csv')
44
b = load('b.csv')
5-
s = score(a, b)
65

7-
print('score: %s' % s)
6+
for method in ['corr', 'auc', 'loglik', 'info', 'rank']:
7+
print('%s: %s' % (method, score(a, b, method=method)))

spikefinder/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def score(a, b, method='corr'):
2121
'rank': _rank
2222
}
2323
if method not in methods.keys():
24-
raise Exception('method not one of: %s' % methods.join(' '))
24+
raise Exception('scoring method not one of: %s' % ' '.join(methods.keys()))
2525

2626
func = methods[method]
2727

0 commit comments

Comments
 (0)