Nothing
shuffle <- function(n, k = 100, x = runif(n)) {
v <- x[1:k]
y <- x[k+1]
xnew <- numeric(n - k)
i <- 1
while (n > k) {
j <- floor(k*y)+1
y <- v[j]
xnew[i] <- y
i <- i + 1
v[j] <- x[k+1]
x[k+1] <- x[n]
n <- n-1
}
c(v, xnew)
}
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.