Nothing
camelCase <- function(x) {
gsub("_(.)", "\\U\\1", x, perl = TRUE)
}
toCamel <- function(x) {
if (is.list(x)) {
x[] <- lapply(x, toCamel)
}
if (!is.null(names(x))) {
names(x) <- camelCase(names(x))
}
x
}
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.