Description Usage Arguments Details Value Author(s) Examples
A utility to detect and remove species represented only by singletons.
1 | rmSingletons(sppVector, exclude = TRUE)
|
sppVector |
Vector of species names. (see |
exclude |
Logical. Should singletons be removed? Default of TRUE. |
When exclude = TRUE
(the default), singletons are excluded and the vector returns the index of all non-singletons in the dataset. When exclude = FALSE
, the indices of the singletons are presented.
Returns a numeric vector giving the indices of the selected individuals.
Samuel Brown <s_d_j_brown@hotmail.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | data(anoteropsis)
anoDist <- dist.dna(anoteropsis)
anoSpp <- sapply(strsplit(dimnames(anoteropsis)[[1]], split="_"),
function(x) paste(x[1], x[2], sep="_"))
rmSingletons(anoSpp)
rmSingletons(anoSpp, exclude=FALSE)
data(dolomedes)
doloDist <- dist.dna(dolomedes)
doloSpp <- substr(dimnames(dolomedes)[[1]], 1, 5)
rmSingletons(doloSpp)
rmSingletons(doloSpp, exclude=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.