Description Usage Arguments Value Author(s) See Also Examples
Retrieve the number of partitions (getK
),
the partitioning vector (partitioning
),
the number of samples per partition (partitions
),
create a matrix of memberships of plots to partitions (partitioningMatrix
),
or tabulate all possible combinations of partitions (partitioningCombinations
).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## S4 method for signature 'VegsoupPartition'
getK(x)
## S4 method for signature 'VegsoupPartition'
partitioning(x)
## S4 method for signature 'VegsoupPartition'
partitions(x)
## S4 method for signature 'VegsoupPartition'
partitioningMatrix(x)
## S4 method for signature 'VegsoupPartition'
partitioningCombinations(x, collapse)
|
x |
|
collapse |
Character be be used as separator in dimnames. Only characters are
allowed that can be identified with |
partitioning |
returns the running partitioning vector. |
partitioningMatrix |
returns a |
partitioningCombinations |
returns a |
Roland Kaiser
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | require(vegsoup)
data(barmstein)
x <- VegsoupPartition(barmstein, k = 2)
# number of partitions
getK(x)
# vector of assigments
partitioning(x)
# number of samples per partition
partitions(x)
# matrix of memberships
partitioningMatrix(x)
# matrix of possible combinations
partitioningCombinations(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.