Nothing
### trim simply trims spaces from the start and end of a string
trim <- function(str) {
### Based on 'trim' in package Gdata by
### Gregory R. Warnes <greg at warnes.net> and others
str <- sub(pattern="^ +", replacement="", x=str)
str <- sub(pattern=" +$", replacement="", x=str)
str <- sub(pattern="^\t+", replacement="", x=str)
str <- sub(pattern="\t+$", replacement="", x=str)
return(str);
}
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.