mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-12 22:26:18 +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))
|