Nothing
`subtree` <-
function (node, tree)
{
edges <- numeric(0)
newedges <- which(tree[1, ] == node)
while (length(newedges) > 0) {
edges <- c(edges, newedges)
newnodes <- tree[2, newedges]
newedges <- which(tree[1, ] %in% newnodes)
}
return(sort(edges))
}
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.