#' Calculate the full set difference between two objects
#'
#' Regular `setdiff()` is order-specific, but sometimes you just want to know
#' what elements are just not in both lists. This function does that.
#'
#' @param x a vector to combine
#' @param y a vector to combine
#'
#' @export
#'
full_setdiff <- function(x, y) {
c(setdiff(x, y), setdiff(y, x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.