Description Usage Arguments Value Author(s) Examples
standardize Elo ratings between 0 and 1
1 | scale_elo(x)
|
x |
numeric, a vector of Elo ratings |
a numeric vector of Elo ratings, which are scaled between 0 and 1, with the highest rating that is supplied becoming 1, the lowest becoming 0, and all others being proportionally scaled in between
Christof Neumann
1 2 3 4 5 6 7 | data(adv)
SEQ <- elo.seq(winner=adv$winner, loser=adv$loser, Date=adv$Date)
extract_elo(SEQ, "2010-01-30")
extract_elo(SEQ, "2010-01-30", standardize=TRUE)
# same as
scale_elo(extract_elo(SEQ, "2010-01-30"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.