View source: R/summary.dispRity.R
summary.dispRity | R Documentation |
Creates a summary of a dispRity
object.
## S3 method for class 'dispRity'
summary(
object,
...,
quantiles = c(50, 95),
cent.tend = median,
recall = FALSE,
digits
)
object |
A |
... |
Additional arguments to be passed to |
quantiles |
The quantiles to display (default is |
cent.tend |
A function for summarising the bootstrapped disparity values (default is |
recall |
|
digits |
Optional, a value for digits the values in the output table (default = 2). |
If the dispRity
object to summarise comes from a chrono.subsets
using a "multiPhylo"
object, the displayed number of observations (n
) corresponds to the maximum number of observation at the specific time slice (some slices through some trees might have less observations).
A data.frame
with:
subsets |
the subset names. |
n |
the maximum number of elements in each subset (see details). |
observed |
the observed disparity or the the observed central tendency (<cent_tend>) of disparity ( |
bootstraps... |
if |
Thomas Guillerme
dispRity
, plot.dispRity
.
## Load the disparity data based on Beck & Lee 2014
data(disparity)
## Summarising the results
summary(disparity) # default
## Using different options
summary(disparity, quantiles = 75, cent.tend = mean, digits = 8,
recall = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.