R/ILnumber.R

Defines functions ILnumber

Documented in ILnumber

#' IL number
#' 
#' Computes the number of internal nodes with a single tip child. 
#' 
#' @author Michael Boyd \email{mboyd855@gmail.com}
#' @author Michelle Kendall \email{michelle.louise.kendall@@gmail.com}
#'   
#' @param tree a tree of class \code{phylo} or \code{phylo4}. The tree should be binary and rooted; if not it will be coerced into a binary rooted tree using multi2di, if possible.
#' @param normalise option to normalise the result, default is \code{FALSE}
#' @return The integer number of internal nodes with a single tip child.
#' 
#' @import ape
#' 
#' @examples
#' ## Find the IL number of a random tree with 10 tips:
#' tree <- rtree(10)
#' plot(tree)
#' ILnumber(tree)
#' ## and the normalised IL number:
#' ILnumber(tree, normalise=TRUE)
#' 
#' @export
ILnumber <- function(tree, normalise=FALSE) {
  tree <- phyloCheck(tree)
  N <- length(tree$tip.label)
  if (N==2) {return(0)} # if N=2 the result is 0 (and we should not try to normalise it!)
  else {
    NDs <- treeImb(tree)[(N+1):(2*N-1),]
    if (normalise==FALSE) { return(sum(apply(NDs,1, function(x) sum(x==1)==1))) }
    else { return(sum(apply(NDs,1, function(x) sum(x==1)==1))/(N-2)) }
  }
}
MichelleKendall/phyloTop documentation built on Feb. 1, 2023, 8:07 a.m.