Nothing
Shuffle <- function(
x,
ignore=NULL
) {
# shuffle the values in x
# ignore should be a logical vector equal in length to x
# for each T value in ignore, the corresponding value in x is not shuffled
if (is.null(ignore)) ignore <- rep(F, length(x))
x[!ignore] <- sample(x[!ignore])
x
}
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.