rrace | R Documentation |
Returns a rank vector suitable for interpretation with race()
.
rrace(strengths)
strengths |
Named vector with names being players and values being their Bradley-Terry strengths |
Uses a simple recursive system to generate the ranks.
Returns a character vector with entries corresponding to the competitor. The first element is the winner, the second the runner-up, and so on, until the final element is the last to cross the finishing line.
Robin K. S. Hankin
rrace3
,hyper2
o <- c(a=0.4, b=0.3, c=0.2, d=0.1)
rrace(o)
rankvec_likelihood(rrace(o))
D <- t(replicate(10,rrace(o))) # 10 races
H <- hyper2()
for(i in seq_len(nrow(D))){H <- H+rankvec_likelihood(D[i,])}
maxp(H) # should be close to o
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.