This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Is it possible to plot a radiation tree with ggtree? how?

Is it possible to plot a radiation tree (example below) with ggtree? If so, how? If not possible, are there any other R packages that can automate radiation tree making?

radiation tree

ggtree phylogenetic tree radiation

2 answers

Use the unrooted tree option:

ggtree(tree, layout="unrooted")

The information you are looking for can easily be found with google search: https://bioconductor.org/packages/devel/bioc/vignettes/ggtree/inst/doc/treeVisualization.html#unrooted

Non-ggtree answer: You can use APE (analysis of phylogenetics and evolution) to plot an un-rooted tree:

library("ape")
plot(as.phylo(hc), type = "unrooted", cex = 0.6,
 no.margin = TRUE)

Log in to answer this question.