Learn R Programming

phyloTop (version 2.1.2)

avgLadder: Average ladder size

Description

Finds the mean size of ladders in the tree

Usage

avgLadder(tree, normalise = FALSE)

Value

The mean ladder size

Arguments

tree

a tree of class phylo or phylo4. The tree should be binary and rooted; if not it will be coerced into a binary rooted tree using multi2di, if possible.

normalise

option to normalise the result, default is FALSE

Author

Michelle Kendall michelle.louise.kendall@gmail.com

See Also

ladderSizes

Examples

Run this code
## Find the average ladder size in a random tree with 20 tips:
tree <- rtree(20)
plot(tree)
avgLadder(tree)
# and the normalised average ladder size:
avgLadder(tree, normalise=TRUE)


Run the code above in your browser using DataLab