Computes the number of internal nodes with a single tip child.
ILnumber(tree, normalise = FALSE)
The integer number of internal nodes with a single tip child.
## Find the IL number of a random tree with 10 tips:
tree <- rtree(10)
plot(tree)
ILnumber(tree)
#> [1] 2
## and the normalised IL number:
ILnumber(tree, normalise=TRUE)
#> [1] 0.25