Nothing
##' Randomly take a number of elements in a vector
##'
##' @description This function allows to pick up the last element in a vector
##' when the parameter size is equal to 1. Passes parameters to `sample.int`
##' like size.
##'
##' @param x is a vector
##' @param ... parameters given to the function sample.int
##' @return a vector of length equal to size parameter.
resample <- function(x, ...) x[sample.int(length(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.