View source: R/geom_rootedge.R
geom_rootedge | R Documentation |
display root edge layer for a tree
geom_rootedge(rootedge = NULL, ...)
rootedge |
length of rootedge; use phylo$root.edge if rootedge = NULL (default). |
... |
additional parameters Additional parameters can be referred to the following parameters:
|
geom_rootedge
is used to create a rootedge as ggtree doesn’t plot the root edge by default.
ggtree rootedge layer
Guangchuang Yu
G Yu, DK Smith, H Zhu, Y Guan, TTY Lam (2017). ggtree: an R package for visualization and annotation of phylogenetic trees with their covariates and other associated data. Methods in Ecology and Evolution, 8(1):28-36. https://doi.org/10.1111/2041-210X.12628
library(ggtree)
set.seed(123)
## with root edge = 1
tree1 <- read.tree(text='((A:1,B:2):3,C:2):1;')
ggtree(tree1) + geom_tiplab() + geom_rootedge()
## without root edge
tree2 <- read.tree(text='((A:1,B:2):3,C:2);')
ggtree(tree2) + geom_tiplab() + geom_rootedge()
## setting root edge
tree2$root.edge <- 2
ggtree(tree2) + geom_tiplab() + geom_rootedge()
## specify length of root edge for just plotting
## this will ignore tree$root.edge
ggtree(tree2) + geom_tiplab() + geom_rootedge(rootedge = 3)
## For more detailed demonstration of this function, please refer to chapter A.4.5 of
## *Data Integration, Manipulation and Visualization of Phylogenetic Trees*
## <http://yulab-smu.top/treedata-book/index.html> by Guangchuang Yu.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.