spread {vegsoup}R Documentation

Occurrences of Species in Partitions

Description

Method spread simply lists all occurrences of species labeled by partition. private returns the private species, those occurring in a specific partition only.

Usage

  spread(obj, condensed = FALSE)
  
  private(obj)

Arguments

obj

An object inheriting from "VegsoupPartition".

condensed

logical. If TRUE return in condensed form with as manny elements as there are partitions.

Value

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)).

Author(s)

Roland Kaiser

See Also

shared, VegsoupPartition

Examples

require(vegsoup)

data(barmstein)
x <- VegsoupPartition(barmstein, k = 2)

spread(x)

spread(x, condensed = TRUE)

private(x)

[Package vegsoup version 0.2-7 Index]