I want to mark different branches on a phylogenetic tree using 3 different line widths. How can I especify that branch 2 has width= 2, line 10 has width= 4 and the remaining lines have width=1? For example, there are 88 branches in the bird.orders dataset
data(bird.orders)
bird.orders@edge
This, obviously does not do anything
plot(bird.orders, edge.width = c(bird.orders$edge[2]==2, bird.orders$edge[10]==4, bird.orders$edge[-c(2,10)]==1))
Thank you!