Nothing
#' split it
#'
#' Creates an list of indexes for each unique entry of \code{x}
#'
#' @param x a vector
#'
#' @examples
#' x <- c("a","a","b","a","b","c","b","b")
#' splitit(x)
splitit <- function(x) split(seq(along=x),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.