View source: R/dispRity.wrapper.R
| dispRity.per.group | R Documentation |
Performs a disparity analysis between groups.
dispRity.per.group(data, group, metric = c(median, centroids), ...)
data |
An ordinated |
group |
A |
metric |
A vector containing one to three functions (default = |
... |
Optional arguments to be passed to |
Note that this is a wrapper function that allows users to run a basic disparity among groups analysis without too much effort.
As such it has a lot of defaults described in the functions that make up the analysis.
See custom.subsets, boot.matrix, dispRity.metric, summary.dispRity, plot.dispRity for more details of the defaults used in each of these functions.
Note that any of these defaults can be changed within the disparity.through.time function.
A dispRity object that can be passed to summary or plot.
Thomas Guillerme
custom.subsets, boot.matrix, dispRity.metric, summary.dispRity, plot.dispRity.
## Load the Beck & Lee 2014 data
data(BeckLee_mat50)
## Run a simple disparity per group analysis comparing stem and crown mammals
result <- dispRity.per.group(BeckLee_mat50, list(crown = c(16, 19:41, 45:50),
stem = c(1:15, 17:18, 42:44)))
summary(result) ; plot(result)
## This is equivalent to run the following decomposed code
dispRity(boot.matrix(custom.subsets(BeckLee_mat50, list(crown = c(16, 19:41, 45:50),
stem = c(1:15, 17:18, 42:44))),
bootstraps = 100),
metric = c(median, centroids))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.