mergeDocumentation <- function(x) {
if (!anyDuplicated(names(x))) {
return(x)
}
out <- list()
for (i in unique(names(x))) {
out[[i]] <- unlist(x[names(x) == i], use.names = FALSE)
}
return(out)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.