Nothing
#' Create unique ID
#'
#' Creates a unique ID given a data frame and a string separated by ;.
#'
#' @param x a data frame.
#' @param uID a string separated by ;.
#'
#' @returns A character vector.
#' @noRd
uID <- function(x,uID){
do.call(paste, c(as.data.frame(x[,strsplit(uID,split = ";")[[1]]]), sep="_"))
}
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.