findTerminalgivenLength | R Documentation |
This function identifies the terminal branches in a phylogenetic tree that have lengths greater than a given threshold.
findTerminalgivenLength(arbol, valor = 0)
arbol |
A phylogenetic tree object in the 'phylo' format. |
valor |
A numeric value representing the length threshold. Branches with lengths greater than this value will be identified. Defaults to 0.0. |
A character vector containing the labels of the terminal branches that meet the length threshold.
# Find terminal branches with lengths greater than 0.5
long_branches <- findTerminalgivenLength(arbol = tree, valor = 0.5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.