Nothing
col2grey <- function(cols){
rgb <- col2rgb(cols)
gry <- rbind( c(0.3, 0.59, 0.11) ) %*% rgb
rgb(gry,gry,gry, maxColorValue=255)
}
col2gray <- function(cols){
col2grey(cols)
}
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.