Description Usage Arguments Value Author(s) See Also Examples
Return species meeting the abundance threshold given by argument 
treshold applied to constancy(obj) along with median abundance 
(see quantile).
1 2  | 
 obj  | 
 An object inheriting from class   | 
 threshold  | 
 numeric. Threshold value.  | 
 layers  | 
 logical. If   | 
 ...  | 
 currently not used.  | 
A data.frame.
Roland Kaiser
1 2 3 4 5 6 7 8 9 10 11 12 13  | require(vegsoup)
data(barmstein)
x <- barmstein
abundant(x) # with default values
abundant(x, treshold = 50) # treshold set to 50% constancy
abundant(x, treshold = 75, layers = TRUE) # include layers
x <- VegsoupPartition(barmstein, k = 2)
abundant(x) # threshold applied over all partitions
abundant(partition(x, 1)) # for a selected partition
abundant(partition(x, 2), layers = TRUE) # for a selected partition with layers
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.