errcw / trueskill

JavaScript implementation of the TrueSkill algorithm
MIT License
21 stars 2 forks source link

trueskill

TrueSkill is a skill-based ranking system developed by Microsoft Research. It is used by Xbox LIVE to rank and match players. This package implements TrueSkill in JavaScript as an npm package.

API

Import the module.

var trueskill = require('trueskill');

TrueSkill

TrueSkill encodes parameters about the game.

var env = new trueskill.TrueSkill({
  mu: 25,
  sigma: 25 / 3,
  beta: 25 / 6,
  tau: 25 / 300,
  draw: 0.1
});

where

Rating

Rating encodes a player's rating.

var rating = new trueskill.Rating(mu, sigma);

where

transformRatings

transformRatings calculates updated ratings based prior ratings and the outcome of a game.

var newRatings = env.transformRatings(
  [
    { 'p1': r1, 'p2': r2 },
    { 'p3': r3, 'p4': r4 }
  ],
  [ 2, 1 ]);

where

matchQuality

matchQuality calculates the quality of a match as a function of the probability of all teams drawing.

var quality = env.matchQuality(
  [
    { 'p1': r1, 'p2': r2 },
    { 'p3': r3, 'p4': r4 }
  ]);

where the teams parameter is the same as transformRatings.

References