Nothing
#' Tree string
#'
#' @param tree ordered list of variables
#' @keywords internal
tree_string <- function(tree, max){
ls <- vapply(tree, length, FUN.VALUE = 1)
mm <- min(max, length(tree))
vvs <- paste0(names(tree)[1:mm], "[", ls[1:mm], "]")
if (mm < length(tree)) vvs <- c(vvs, paste0("... [",
length(tree) - mm, " omitted]"))
paste(vvs, collapse = "->")
}
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.