Nothing
#' has.children
#'
#' For internal use only.
#' Determines if a node in the Partition tree has a child.
#'
#' @param part Node in partition Tree.
#'
#' @return Logical determining if the node has any children.
#'
has.children <- function(part){
# Would rather not have this one exported to the package.
class(part[[1]]) == 'list'
}
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.