Nothing
# A helping function that removes any columns of `exdf_a` that are also in
# `exdf_b`
remove_repeated_colnames <- function(exdf_a, exdf_b) {
a_in_b <- colnames(exdf_a) %in% colnames(exdf_b)
a_in_b_names <- colnames(exdf_a)[a_in_b]
for (cn in a_in_b_names) {
exdf_a[, cn] <- NULL
}
exdf_a
}
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.