Estimate the impact on model estimates of phylogenetic linear regression after removing clades from the analysis and evaluating uncertainty in trees topology.
tree_clade_phylm(
formula,
data,
phy,
clade.col,
n.species = 5,
n.sim = 100,
n.tree = 2,
model = "lambda",
track = TRUE,
...
)
The model formula
Data frame containing species traits with row names matching tips
in phy
.
A phylogeny (class 'multiPhylo', see ?ape
).
The column in the provided data frame which specifies the clades (a character vector with clade names).
Minimum number of species in a clade for the clade to be
included in the leave-one-out deletion analysis. Default is 5
.
Number of simulations for the randomization test.
Number of times to repeat the analysis with n different trees picked
randomly in the multiPhylo file.
If NULL, n.tree
= 2
The phylogenetic model to use (see Details). Default is lambda
.
Print a report tracking function progress (default = TRUE)
Further arguments to be passed to phylolm
The function clade_phylm
returns a list with the following
components:
formula
: The formula
full.model.estimates
: Coefficients, aic and the optimised
value of the phylogenetic parameter (e.g. lambda
) for the full model
without deleted species.
sensi.estimates
: A data frame with all simulation
estimates. Each row represents a deleted clade for a tree iteration. Columns report the calculated
regression intercept (intercept
), difference between simulation
intercept and full model intercept (DIFintercept
), the percentage of change
in intercept compared to the full model (intercept.perc
) and intercept
p-value (pval.intercept
). All these parameters are also reported for the regression
slope (DIFestimate
etc.). Additionally, model aic value (AIC
) and
the optimised value (optpar
) of the phylogenetic parameter
(e.g. kappa
or lambda
, depending on the phylogenetic model used)
are reported.
null.dist
: A data frame with estimates for the null distributions
for all clades analysed.
data
: Original full dataset.
errors
: Clades and/or trees where deletion resulted in errors.
This function sequentially removes one clade at a time, fits a phylogenetic
linear regression model using phylolm
and stores the
results. The impact of of a specific clade on model estimates is calculated by the
comparison between the full model (with all species) and the model without
the species belonging to a clade. It repeats this operation using n trees,
randomly picked in a multiPhylo file.
Additionally, to account for the influence of the number of species on each clade (clade sample size), this function also estimate a null distribution of slopes expected for the number of species in a given clade. This is done by fitting models without the same number of species in the given clade. The number of simulations to be performed is set by 'n.sim'. To test if the clade influence differs from the null expectation for a clade of that size, a randomization test can be performed using 'summary(x)'.
All phylogenetic models from phylolm
can be used, i.e. BM
,
OUfixedRoot
, OUrandomRoot
, lambda
, kappa
,
delta
, EB
and trend
. See ?phylolm
for details.
clade_phylm
detects influential clades based on
difference in intercept and/or slope when removing a given clade compared
to the full model including all species. This is done for n trees in the multiphylo file.
Currently, this function can only implement simple linear models (i.e. \(y = a + bx\)). In the future we will implement more complex models.
Output can be visualised using sensi_plot
.
Paterno, G. B., Penone, C. Werner, G. D. A. sensiPhy: An r-package for sensitivity analysis in phylogenetic comparative methods. Methods in Ecology and Evolution 2018, 9(6):1461-1467
Ho, L. S. T. and Ane, C. 2014. "A linear-time algorithm for Gaussian and non-Gaussian trait evolution models". Systematic Biology 63(3):397-408.
phylolm
, tree_phylm
,
clade_phylm
, tree_clade_phyglm
,
sensi_plot
# NOT RUN {
# Load data:
data(primates)
# run analysis:
clade_tree <- tree_clade_phylm(log(sexMaturity) ~ log(adultMass),
phy = primates$phy, data = primates$data, clade.col = "family", n.sim = 50, n.tree = 5)
# To check summary results and most influential clades:
summary(clade_tree)
# Visual diagnostics for clade removal:
sensi_plot(clade_tree)
# Specify which clade removal to plot:
sensi_plot(clade_tree)
sensi_plot(clade_tree, "Cercopithecidae")
sensi_plot(clade_tree, clade = "Cebidae", graphs = 2)
# }
Run the code above in your browser using DataLab