Nothing
list2matrix <- function(profiles) {
lengths <- sapply(profiles[["profile"]], function(x) {length(unlist(x))})
stopifnot(length(unique(lengths)) == 1)
mat <- matrix(unlist(lapply(profiles[["profile"]], function(x) {as.vector(unlist(x))})), ncol=length(profiles[["profile"]]))
colnames(mat) <- names(profiles[["profile"]])
profiles[["profile"]] <- mat
profiles
}
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.