Nothing
#' Delete all whitespace until a non-whitespace character.
#' @param extract_val a vector.
#'
delete_space <- function(extract_val){
while(extract_val[1] == ""){
extract_val<-extract_val[-1]
}
return(extract_val)
}
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.