Description Usage Arguments Details Value References See Also Examples
The function plots numerous useful graphs for illustrating results and the ways by which they were obtained: hierarchical trees of component clustering, composition and mean performance of assembly motifs, mean performance of assemblages containing a given components, observed, simulated and predicted performances of assemblages labelled by assembly motif, performances of given assemblages...
1 2 3 |
fres |
an object generated by the function |
nbcl |
an integer.
The integer indicates the number of component clusters
to take into account.
It can be lower than or equals to
the optimum number |
main |
a string, that is used as the first, reference part of the title of each graph. |
opt.tree |
a list, that can include
|
opt.perf |
a list, that can include
|
opt.ass |
a list, that include
|
opt.motif |
a list, that can include
|
opt.comp |
a list, that can include
|
opt.all |
This option is equivalent to
|
If all the options are NULL
,
that is opt.tree = NULL, opt.perf = NULL, opt.ass = NULL,
opt.motif = NULL, opt.comp = NULL, opt.all = NULL
,
the function plot the main results, that are:
the secondary tree (opt.tree = "prd"
),
assembly motifs as horizontal boxplots
(opt.motif = list("obs", "hor")
)), and
modelled and predicted by cross-validation mean performances
versus observed performances (opt.perf = "prd"
).
Nothing. It is a procedure.
Jaillard, B., Richon, C., Deleporte, P., Loreau, M. and Violle, C. (2018)
An a posteriori species clustering
for quantifying the effects of species
interactions on ecosystem functioning.
Methods in Ecology and Evolution, 9:704-715.
https://doi.org/10.1111/2041-210X.12920.
Jaillard, B., Deleporte, P., Loreau, M. and Violle, C. (2018)
A combinatorial analysis using observational data
identifies species that govern ecosystem functioning.
PLoS ONE 13(8): e0201135.
https://doi.org/10.1371/journal.pone.0201135.
fclust
: make a functional clustering,
fclust_plot
: plot the results of a functional clustering,
fclust_write
: save the results of a functional clustering,
fclust_read
: read the results of a functional clustering.
plot_ftrees
plot primary and secondary trees
resulting from a functional clusterin,
plot_fperf
plot observed, modelled and predicted performances
resulting from a functional clustering,
plot_fass
plot performances of some given assemblages,
plot_fmotif
plot as boxplot mean performances
of assemblages sorted by assembly motifs,
plot_fcomp
plot as boxplot mean performances
of assemblages containing a given component,
fclust_plot
plot all possible outputs
of a functional clustering.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | res <- CedarCreek.2004.res
# plot the hierarchical tree of functionally redundant components
fclust_plot(res, main = "BioDiv2 2004", opt.tree = "prd")
# plot AIC and AICc versus the number of clusters of components
layout(matrix(c(1,2,3,4), nrow = 2, ncol = 2, byrow = TRUE))
fclust_plot(res, main = "BioDiv2 2004", opt.perf = "stats_II")
layout(1)
# plot the performances modelled and predicted versus observed performances
fclust_plot(res, main = "BioDiv2 2004", opt.perf = "prd")
# plot the performances sorted by assembly motifs
layout(matrix(c(1,2), nrow = 1, ncol = 2, byrow = TRUE))
fclust_plot(res, main = "BioDiv2 2004",
opt.motif = c("obs", "prd", "hor"))
layout(1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.