summary.multipatt | R Documentation |
This is a summary
function for multipatt
objects.
## S3 method for class 'multipatt'
summary(
object,
alpha = 0.05,
minstat = NULL,
At = NULL,
Bt = NULL,
indvalcomp = FALSE,
...
)
object |
An object returned by function |
alpha |
Significance level for selecting species in the summary. |
minstat |
Minimum (absolute) value of the statistic for selecting species in the summary. |
At |
Minimum value of positive predictive value (A) for selecting indicators. This argument is effective only if |
Bt |
Minimum value for sensitivity (B) for selecting indicators. This argument is effective only if |
indvalcomp |
Logical flag used to report components "A" (or "A.g") and "B" of indicator values. This argument is effective only if |
... |
Additional arguments of the |
The summary function for multipatt
objects presents the results of the analysis by grouping species following their associated site group combination. Only significantly associated species are listed for each combination. The user can limit the species shown by setting a significance level and the minimum value for the strength of the association.
Miquel De Cáceres Ainsa, EMF-CREAF
strassoc
, signassoc
, multipatt
library(stats)
## Loads species data
data(wetland)
## Creates three clusters using kmeans
wetkm <- kmeans(wetland, centers=3)
## Runs the combination analysis using IndVal.g as statistic
wetpt <- multipatt(wetland, wetkm$cluster)
## Lists those species with significant association to one combination
summary(wetpt)
## Lists those species with significant association to one combination,
## including indval components
summary(wetpt, indvalcomp=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.