AdmiralGT / ttennis_ladder

0 stars 1 forks source link

Use glicko instead of Elo #25

Open andrew-nubbert opened 7 years ago

andrew-nubbert commented 7 years ago

Glicko is better than Elo because it gives more accurate rankings and has the concept of uncertainty in your ranking. It can do clever things:

You can get a standard glicko javascript implementation online. glicko2.js in the current codebase is what to use - https://github.com/mmai/glicko2js.

This is definitely a WIBNI as Elo is perfectly acceptable, but if we're making things totally awesome then why not do this?