Nothing
# this is borrowed from nnet::which.is.max
which.max.random <- function (x)
{
mx <- x == max(x, na.rm = TRUE)
mx[is.na(mx)] <- FALSE
y <- seq_along(x)[mx]
if (length(y) > 1L)
sample(y, 1L)
else
y
}
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.