Description Usage Arguments See Also Examples
Plot histograms of estimated ratings or other features, including full history progressions.
1 2 3 4 |
x |
An object of class |
which |
The variable to be plotted. |
tng |
A single value. If the number of games played by the player is below this value, the player is not depicted on the plot. |
history |
If |
log |
The log(x+1) transform. May be useful if plotting e.g. the number of games. |
xlab,main |
Graphical parameters. |
density |
If |
add |
Add to an existing plot? Only relevant for density estimates. |
... |
Other parameters to be passed through to plotting functions. |
1 2 3 4 5 6 7 8 9 10 11 12 13 | afl <- aflodds[,c(2,3,4,7)]
robj <- steph(afl)
hist(robj, xlim = c(1900,2500), density=TRUE)
afl <- aflodds[,c(2,3,4,7)]
robj <- steph(afl, history=TRUE)
hist(robj, history=TRUE, xlim = c(1900,2500), density=TRUE)
robj <- elom(riichi)
hist(robj, xlim = c(1100,1900))
robj <- elom(riichi, history=TRUE)
hist(robj, history=TRUE, xlim = c(1100,1900))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.