ggtree | R Documentation |
drawing phylogenetic tree from phylo object
ggtree(
tr,
mapping = NULL,
layout = "rectangular",
open.angle = 0,
mrsd = NULL,
as.Date = FALSE,
yscale = "none",
yscale_mapping = NULL,
ladderize = TRUE,
right = FALSE,
branch.length = "branch.length",
root.position = 0,
xlim = NULL,
layout.params = list(as.graph = TRUE),
hang = 0.1,
...
)
tr |
phylo object |
mapping |
aesthetic mapping |
layout |
one of 'rectangular', 'dendrogram', 'slanted', 'ellipse', 'roundrect', 'fan', 'circular', 'inward_circular', 'radial', 'equal_angle', 'daylight' or 'ape' |
open.angle |
open angle, only for 'fan' layout |
mrsd |
most recent sampling date |
as.Date |
logical whether using Date class in time tree |
yscale |
y scale |
yscale_mapping |
yscale mapping for category variable |
ladderize |
logical (default |
right |
logical. If |
branch.length |
variable for scaling branch, if 'none' draw cladogram |
root.position |
position of the root node (default = 0) |
xlim |
x limits, only works for 'inward_circular' layout |
layout.params |
list, the parameters of layout, when layout is a function.
|
hang |
numeric The fraction of the tree plot height by which labels should hang below the rest of the plot. A negative value will cause the labels to hang down from 0. This parameter only work with the 'dendrogram' layout for 'hclust' like class, default is 0.1. |
... |
additional parameter some dot arguments:
|
tree
Yu Guangchuang
G Yu, TTY Lam, H Zhu, Y Guan (2018). Two methods for mapping and visualizing associated data on phylogeny using ggtree. Molecular Biology and Evolution, 35(2):3041-3043. https://doi.org/10.1093/molbev/msy194
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
For more information, please refer to Data Integration, Manipulation and Visualization of Phylogenetic Trees http://yulab-smu.top/treedata-book/index.html by Guangchuang Yu.
geom_tree()
require(ape)
tr <- rtree(10)
ggtree(tr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.