Nothing
`permute` <- function(i, n, control) {
complete <- getComplete(control)
ap <- getAllperms(control)
perm <- if (complete && !is.null(ap)) {
ap[i, ] # select ith permutation
} else {
if (complete) {
warning("'$all.perms' is NULL, yet '$complete = TRUE'.\nReturning a random permutation.")
}
shuffle(n, control)
}
perm
}
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.