# make names db safe: no '.' or other illegal characters,
# all lower case and unique
safe_names = function(names) {
names = gsub('[^a-z0-9]+','_',tolower(names))
names = make.names(names, unique=TRUE, allow_=TRUE)
names = gsub('.','_',names, fixed=TRUE)
names
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.