ape (version 5.7-1)

varcomp: Compute Variance Component Estimates

Description

Get variance component estimates from a fitted lme object.

Usage

varcomp(x, scale = FALSE, cum = FALSE)

Value

A named vector of class varcomp with estimated variance components.

Arguments

x

A fitted lme object

scale

Scale all variance so that they sum to 1

cum

Send cumulative variance components.

Author

Julien Dutheil dutheil@evolbio.mpg.de

Details

Variance computations is done as in Venables and Ripley (2002).

References

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S (Fourth Edition). New York: Springer-Verlag.

See Also

Examples

Run this code
data(carnivora)
library(nlme)
m <- lme(log10(SW) ~ 1, random = ~ 1|Order/SuperFamily/Family/Genus, data=carnivora)
v <- varcomp(m, TRUE, TRUE)
plot(v)

Run the code above in your browser using DataLab