Nothing
#' @noRd
lintersect <- function(lst) {
res <- lst[[1]]
if (length(lst) > 1) {
for (i in 2:length(lst)) {
res <- intersect(res, lst[[i]])
}
}
res
}
#' @noRd
lunion <- function(lst) {
res <- lst[[1]]
if (length(lst) > 1) {
for (i in 2:length(lst)) {
res <- union(res, lst[[i]])
}
}
res
}
#' @noRd
id <- function(x) {
x
}
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.