Description Usage Arguments Details Value Examples
The function allows to test the relative significance of each component, of each assemblage and of each performance on the result of the functional clustering. The method is based on removing one after the other each component, assemblage or performance, then evaluating the effect of these deletions on the functional clustering. Each new functional clustering is compared with the functional clustering obtained with the whole dataset. The process is time-consuming.
1 2 3 |
fres |
an object resulting from a functional clustering
obtained with the whole dataset using the function |
opt.var |
a string, that indicates the variable to test.
The option can be |
opt.nbMax |
a logical. If |
opt.R2 |
a logical. If |
opt.plot |
a logical. If |
None.
a list of matrices, each matrix containing the results for a given clustering index.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Enable the comments
oldOption <- getOption("verbose")
if (!oldOption) options(verbose = TRUE)
layout(matrix(c(1,2,3,4), nrow = 2, ncol = 2, byrow = TRUE))
# Test the significance of annual biomass production
test.perf <- ftest(fres = CedarCreek.2004.2006.res,
opt.var = c("performance"), opt.plot = TRUE)
# Test the significance of each component within each component cluster
test.comp <- ftest(fres = CedarCreek.2004.res,
opt.var = c("components"), opt.plot = TRUE)
layout(1)
options(verbose = oldOption)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.