mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 06:54:44 +00:00
7 lines
233 B
Python
7 lines
233 B
Python
import numpy as np
|
|
|
|
def calculate(starting_score, opposing_score, observed, N, K):
|
|
|
|
expected = 1/(1+10**((np.array(opposing_score) - starting_score)/N))
|
|
|
|
return starting_score + K*(np.sum(observed) - np.sum(expected)) |