
subtreeplot(x, wait=FALSE, ...)
"phylo"
.plot.phylo
.The whole tree is plotted on the left-hand side in half of the device. The subtree is plotted on the right-hand side in the other half. The user clicks on the nodes in the complete tree and the subtree corresponding to this node is ploted in the right-hand side. There is no limit for the number of clicks that can be done. On exit, the subtree on the right hand side is returned.
To use a subtree as the new tree in which to zoom, the user has to use the function many times. This can however be done in a single command line (see example 2).
plot.phylo
, drop.tip
, subtrees
#example 1: simple
tree1<-rtree(50) #random tree with 50 leaves
tree2<-subtreeplot(tree1, wait=TRUE) # on exit, tree2 will be a subtree of tree1.
#example 2: more than one zoom
tree1<-rtree(60)
tree2<-subtreeplot(subtreeplot(subtreeplot(tree1))) #allows three succssive zooms.
Run the code above in your browser using DataLab