Nothing
## chartOpts.R
## Karl W Broman
# add an option to chartOpts, if it's not already present
add2chartOpts <-
function(chartOpts, ...)
{
dots <- list(...)
for(newarg in names(dots)) {
if(!(newarg %in% names(chartOpts)))
chartOpts <- c(chartOpts, dots[newarg])
}
chartOpts
}
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.