I want to produce a circular cladogram in R. I was trying out the ape package and could produce something like this:
plot(tree,'f', use.edge.length=F)
Now I am not really happy with how the edges look like here. I tried out the evolview webserver, which got me something like this, which looks much nicer, especially regarding the edges.
Can anyone suggest other R packages or a different approach with the ape package, to get similar results to the evolview tree?
The two main differences that stand out to me are the size of the labels and the relative lengths of the edges.
Label size can be controlled using the
cex
graphical parameter (usingpar()
, or as a parameter toplot()
).Uniform edge length can be added to the tree by replacing the
$edge.length
property with a vector of1
s: