Nothing
#'
#'@importFrom grDevices col2rgb rgb
#'
col.alpha <- function(col, alpha = 1) {
col.rgb <- col2rgb(col) / 255
red <- col.rgb[1]
green <- col.rgb[2]
blue <- col.rgb[3]
outp <- rgb(red = red, green = green, blue = blue, alpha = alpha)
outp
}
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.