You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to build a phylogenetic tree from a newick file with ggplotly function but as soon as I use geom_text_repel to avoid overlapping between branches and labels, it says that this function is not yet implemented. The geom_text works only by itself but there is a lot of ovelap. Do you know anything that can help instead? Here is a small example.
The text was updated successfully, but these errors were encountered:
gforg34
changed the title
geom_text_repel has not been yet implementd into plotly,
geom_text_repel has not been yet implemented into plotly,
Sep 22, 2022
gforg34
changed the title
geom_text_repel has not been yet implemented into plotly,
geom_text_repel has not been yet implemented into plotly
Sep 22, 2022
I want to build a phylogenetic tree from a newick file with ggplotly function but as soon as I use geom_text_repel to avoid overlapping between branches and labels, it says that this function is not yet implemented. The geom_text works only by itself but there is a lot of ovelap. Do you know anything that can help instead? Here is a small example.
library(ggtree)
library(plotly)
treefile <- "filename.newick"
tree <- read.tree(treefile)
p1 <- ggtree(tree)
p1 + geom_text_repel()
plotly::ggplotly(p1)
The text was updated successfully, but these errors were encountered: