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?

• 3,011 views
•
link
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
• 0 views
•
link
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)
• 0 views
•
link
Log in to answer this question.