Description Usage Arguments Value Author(s) References Examples
Calculates the Brownian variance (single trait) or variance-covariance matrix (mutliple traits) using phylogenetically independent contrasts.
| 1 | phyloCovar(x, phy, estimator = "unbiased")
 | 
| x | A continuous trait | 
| phy | An object of class "phylo" (see ape package). | 
| estimator | Should Brownian variance (or covariance) be based on the unbiased ("unbiased" - default) or maximum likelihood ("ML") estimator. | 
brownianVariance Brownian variance (or covariance for multiple traits) given the data and phylogeny
Gavin Thomas, Rob Freckleton
Felsenstein J. 1973. Maximum-likelihood estimation of evolutionary trees from continuous characters. Am. J. Hum. Genet. 25, 471-492. Felsenstein J. 1985. Phylogenies and the comparative method. American Naturalist 125, 1-15. Freckleton RP & Jetz W. 2009. Space versus phylogeny: disentangling phylogenetic and spatial signals in comparative data. Proc. Roy. Soc. B 276, 21-30.
| 1 2 3 4 5 6 7 | data(anolis.tree)
data(anolis.data)
## calculate Brownian variance of female SVL
female.svl <- matrix(anolis.data[,"Female_SVL"], 
dimnames=list(rownames(anolis.data)))
input.data <- sortTraitData(phy=anolis.tree, y=female.svl, log.trait=TRUE)
phyloCovar(x=input.data$trait, phy = input.data$phy)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.