Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/sub.sp.matrix.R
Subset species based on relative frequency.
1 | sub.sp.matrix(spmatrix, freq = 0.5, common = NULL)
|
spmatrix |
a standard community matrix with rows representing sites and columns representing species. |
freq |
The relative frequency, species with higher relative frequency will be kept in the output. |
common |
The number of most common species to keep. |
sub.sp.matrix will select the species whose relative frequency above 0.5 (default), or select certain number of species based on relative frequency.
A subset matrix of species with high relative frequency.
Jinlong Zhang jinlongzhang01@gmail.com
None
See Also subset
1 2 3 4 5 6 7 | library(vegan)
data(BCI)
## Select the species whose relative frequency
## more than 0.5, from BCI data
sub <- sub.sp.matrix(BCI, freq = 0.5)
## Select the top 30 species according to relative frequency
sub <- sub.sp.matrix(BCI, common = 30)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.