-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
three or more players ranks probability #35
Comments
Simply isn't it |
In general,
4 variables example: ok, I will make an effort to consider whether it can be implemented and send a pull request, if you hope. >>> a = Rating()
>>> b = Rating()
>>> c = Rating()
>>> ranks_probability([(a,)(b,),(c,)], ranks=[0,1,2])
0.1210593088888 Probrem
|
Oh, awesome! Thank you for letting me know my mistake. The function
Instead, would you paste the function as code at this issue? |
ok. I agree with the implementation philosophy that this library is a transparent implementation of Trueskill. |
Thanks for your kindness! |
@dotcom did you ever get around to a ranks_probability method? |
I think, if I want to calculate the win percentage for two players, I should calculate the difference distribution.
X - Y ~ N(μ1 - μ2, σ12 + σ22)
I think that it is sufficient to definitely integrate N in the interval of 0 or more.
But, if game is contained three or more players, how should I predict the ranking probability?
The text was updated successfully, but these errors were encountered: