Nothing
.doc_merge <- function(old, new) {
merged <- list()
oldnames <- names(old)
newnames <- names(new)
for (i in oldnames) {
if (i %in% newnames) {
merged[[i]] <- new[[i]]
} else {
merged[[i]] <- old[[i]]
}
}
for (i in newnames) {
if (!i %in% oldnames) {
merged[[i]] <- new[[i]]
}
}
return(merged)
}
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.