Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/tree_clade_phyglm.R
Estimate the impact on model estimates of phylogenetic logistic regression after removing clades from the analysis and evaluating uncertainty in trees topology.
1 2 3 4 5 6 7 8 9 10 11 12 | tree_clade_phyglm(
formula,
data,
phy,
clade.col,
n.species = 5,
n.sim = 100,
n.tree = 2,
btol = 50,
track = TRUE,
...
)
|
formula |
The model formula |
data |
Data frame containing species traits with row names matching tips
in |
phy |
A phylogeny (class 'multiPhylo', see ? |
clade.col |
The column in the provided data frame which specifies the clades (a character vector with clade names). |
n.species |
Minimum number of species in a clade for the clade to be
included in the leave-one-out deletion analysis. Default is |
n.sim |
Number of simulations for the randomization test. |
n.tree |
Number of times to repeat the analysis with n different trees picked
randomly in the multiPhylo file.
If NULL, |
btol |
Bound on searching space. For details see |
track |
Print a report tracking function progress (default = TRUE) |
... |
Further arguments to be passed to |
Currently only logistic regression using the "logistic_MPLE"-method from
phyloglm
is implemented.
This function sequentially removes one clade at a time, fits a phylogenetic
logistic regression model using phyloglm
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 estimates 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)'.
clade_phyglm
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 implements simple logistic models (i.e. trait~ predictor). In the future we will implement more complex models.
Output can be visualised using sensi_plot
.
The function clade_phyglm
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.
Gustavo Paterno, Caterina Penone & Gijsbert D.A. Werner
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.
phyloglm
, tree_phyglm
,
clade_phyglm
, tree_clade_phylm
,
sensi_plot
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## Not run:
# Simulate Data:
set.seed(6987)
mphy = rmtree(150, N = 30)
x = rTrait(n=1,phy=mphy[[1]])
X = cbind(rep(1,150),x)
y = rbinTrait(n=1,phy=mphy[[1]], beta=c(-1,0.5), alpha=.7 ,X=X)
cla <- rep(c("A","B","C","D","E"), each = 30)
dat = data.frame(y, x, cla)
# Run sensitivity analysis:
tree_clade <- tree_clade_phyglm(y ~ x, phy = mphy, data = dat,
n.tree = 10, n.sim = 10, clade.col = "cla")
# To check summary results and most influential clades:
summary(tree_clade)
# Visual diagnostics for clade removal:
sensi_plot(tree_clade)
# Specify which clade removal to plot:
sensi_plot(tree_clade, "B")
sensi_plot(tree_clade, "C", graphs = 2)
sensi_plot(tree_clade, "D", graphs = 2)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.