forked from bhoung/trueskill-in-r
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
30 lines (30 loc) · 1.17 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Package: trueskill
Title: Implementation of the TrueSkill algorithm in R
Description:
An implementation of the TrueSkill algorithm (Herbrich, R., Minka,
T. and Grapel, T) in R; a Bayesian skill rating system with inference by
approximate message passing on a factor graph. Used by Xbox to rank
gamers and identify appropriate matches.
http://research.microsoft.com/en-us/projects/trueskill/default.aspx
Current version allows for one player per team. Will update as time
permits.
Requires R version 3.0 as it is written with Reference Classes.
URL: https://github.com/bhoung/trueskill-in-r
Acknowledgements to Doug Zongker and Heungsub Lee for their python
implementations of the algorithm and for the liberal reuse of
Doug's code comments (@dougz and @sublee on github).
Html documentation is available at http://www.bhoung.com/trueskill/
Version: 0.2.1
Author: Brendan Houng <[email protected]>, Sergiusz Bleja <[email protected]>
Maintainer: Brendan Houng <[email protected]>
License: GPL-3
Depends:
R (>= 3.0)
Imports:
methods
Collate:
'factorgraph.r'
'init.r'
'trueskill.r'
'player.r'
'team.r'