Nothing
#' @rdname random
#' @aliases rand
#' @title Random
#' @description Returns a index from \code{1:length(v)} randomly ordered.
#'
#' @param v vector: vector with elements
#'
#' @return Index
#' @export
#'
#' @examples
#' random(-3:3)
random <- function(v) {
sample(length(v), size=length(v))
}
#' @rdname random
#' @export
# rand <- function(...){
# random(...)}
rand <- random
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.