Learn R Programming

phyloregion (version 1.0.8)

match_phylo_comm: Match taxa and in phylogeny and community matrix

Description

match_phylo_comm compares taxa (species, labels, tips) present in a phylogeny with a community matrix. Pruning, sorting and trying to add missing species on genus level if possible to match in subsequent analysis.

Usage

match_phylo_comm(phy, comm, delete_empty_rows = TRUE)

Value

A list containing the following elements, pruned and sorted to match one another:

phy

A phylogeny object of class phylo

comm

A (sparse) community data matrix

Arguments

phy

A phylogeny

comm

A (sparse) community data matrix

delete_empty_rows

delete rows with no observation

Details

Based on the function of the same name in picante but allows sparse matrices and with taxa addition.

Examples

Run this code
data(africa)
tree <- africa$phylo
x <- africa$comm

subphy <- match_phylo_comm(tree, x)$phy
submat <- match_phylo_comm(tree, x)$com

Run the code above in your browser using DataLab