Nothing
get_score <- function(x, scoring, n = length(x)) {
rank <- rank(x)
switch(scoring,
rank = rank, vw = qnorm(rank / (n + 1)), expon = {
expon <- cumsum(1 / n:1)
remainder <- rank - floor(rank)
expon[rank] * (1 - remainder) + expon[ceiling(rank)] * remainder
}
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.