randomeloextract {EloRating} | R Documentation |
extract ratings from random sequences based on an interaction matrix
Description
extract ratings from random sequences based on an interaction matrix
Usage
randomeloextract(x, ID, mode = c("obj", "samp", "avg"))
Arguments
x |
output from |
ID |
character, ID |
mode |
character, one of three: 1) |
Value
numeric
Author(s)
Christof Neumann
Examples
data(adv)
elores <- elo.seq(winner = adv$winner, loser = adv$loser, Date = adv$Date)
mat <- creatematrix(elores)
res <- randomelo(mat, runs = 10)
randomeloextract(res, "a", "samp")
randomeloextract(res, "a", "obj")
randomeloextract(res, "a", "avg")
[Package EloRating version 0.46.18 Index]