sublee / trueskill

An implementation of the TrueSkill rating system for Python
https://trueskill.org/
Other
742 stars 112 forks source link

Is there a way to derive a single score of a given team? #28

Open Nelluk opened 5 years ago

Nelluk commented 5 years ago

I'd like to calculate a leaderboard of teams. Is there a function to derive a single TrueSkill number for an entire team?

rmarquis commented 5 years ago

According to TS paper:

The performance of a team is the weighted sum of the performances of its players, where the weight is the fraction of time the player spent on the team.

sublee commented 5 years ago

The weighted sum layer is implemented in TrueSkill, but there's no public API.