Player {TrueSkillThroughTime} | R Documentation |
Player
Description
Player class
Usage
Player(prior = Nms, beta = BETA, gamma = GAMMA)
performance(a)
Arguments
prior |
A Gaussian object, the prior belief distribution of the skills. The
default value is: |
beta |
A number, the standard deviation of the performance. The default
value is: |
gamma |
A number, the amount of uncertainty (standar deviation) added to
the estimates at each time step. The default value is: |
a |
A Player object |
Value
Player object
Examples
a1 = Player(prior = Gaussian(0,6), beta = 1, gamma = 0.03);
a2 = Player()
a1@gamma == a2@gamma
N = performance(a1)
N@mu == a1@prior@mu
N@sigma == sqrt(a1@prior@sigma^2 + a1@beta^2)
[Package TrueSkillThroughTime version 0.1.1 Index]