Learn R Programming

treestats (version 1.70.5)

create_fully_unbalanced_tree: Create an unbalanced tree (caterpillar tree)

Description

This function takes an input phylogeny, and returns a phylogeny that is a perfectly imbalanced tree (e.g. a full caterpillar tree), that has the same branching times as the original input tree.

Usage

create_fully_unbalanced_tree(phy)

Value

phylo phylo object

Arguments

phy

phylo object

Examples

Run this code
phy <- ape::rphylo(n = 16, birth = 1, death = 0)
bal_tree <- treestats::create_fully_unbalanced_tree(phy)
treestats::colless(phy)
treestats::colless(bal_tree) # much higher

Run the code above in your browser using DataLab