spread {vegsoup} | R Documentation |
Method spread
simply lists all occurrences of species labeled by
partition. private
returns the private species, those occurring
in a specific partition only.
spread(obj, condensed = FALSE) private(obj)
obj |
An object inheriting from |
condensed |
|
For spread
a "list"
with as many components as there are
species-layer replicates (ncol(obj)
).
For private
a logical matrix with as many rows as there are
species-layer replicates and columns according to the number of partitions
(getK(obj)
).
Roland Kaiser
require(vegsoup) data(barmstein) x <- VegsoupPartition(barmstein, k = 2) spread(x) spread(x, condensed = TRUE) private(x)