converted space indentation to tab indentation

This commit is contained in:
ltcptgeneral
2020-05-01 16:15:07 -05:00
parent 88e7c52c8b
commit 3ab1d0f50a
12 changed files with 2060 additions and 2060 deletions

View File

@@ -2,6 +2,6 @@ import numpy as np
def calculate(starting_score, opposing_score, observed, N, K):
expected = 1/(1+10**((np.array(opposing_score) - starting_score)/N))
expected = 1/(1+10**((np.array(opposing_score) - starting_score)/N))
return starting_score + K*(np.sum(observed) - np.sum(expected))
return starting_score + K*(np.sum(observed) - np.sum(expected))