
Fits a linear model between the absolute magnitude of the standardized independent contrasts and the height above the root of the node at which they were being compared to identify early bursts of trait evolution.
nh.test(phy, d, regression.type, log = TRUE, rlm.maxit = 20 , show.plot = TRUE, …)
A time calibrated phylogeny in "phylo" format
A named vector of trait values.
The type of regression to be used. Specify regression.type="lm"
to fit a standard linear model or regression.type="rlm"
to fit a robust regression model
Whether the data should be logged or not.
The maximum number of iterations to fit the robust regression model. This is ignored if regression.type="lm"
.
Binary argument indicating whether plot should be made.
Additional arguments passed to plot
Function returns a lm
or rlm
object and outputs a plot if show.plot=TRUE
Slater GJ and MW Pennell (in press) Robust regression and posterior predictive simulation increase power to detect early bursts of trait evolution. Systematic Biology.
Freckleton RP and PH Harvey (2006) Detecting non-brownian evolution in adaptive radiations. PLoS Biology 4:e373.
# NOT RUN {
data(whales)
tmp <- treedata(whales$phy, whales$dat[,1])
phy <- tmp$phy
dat <- tmp$data[,1]
nh.test(phy, dat, regression.type="lm", show.plot=TRUE)
# }
Run the code above in your browser using DataLab