#' @keywords internal
#'
#' @importFrom magrittr %>%
#' @importFrom dplyr full_join
quiet_join <- function(x, y) {
list(x, y) %>%
lapply(colnames) %>%
Reduce(intersect, x = .) %>%
full_join(x, y, by = .)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.