CalcICV {evolqg} | R Documentation |
Calculates the ICV of a covariance matrix.
Description
Calculates the coefficient of variation of the eigenvalues of a covariance matrix, a measure of integration comparable to the R^2 in correlation matrices.
Usage
CalcICV(cov.matrix)
Arguments
cov.matrix |
Covariance matrix. |
Details
Warning: CalcEigenVar is strongly preferred and should probably be used in place of this function.
Value
coefficient of variation of the eigenvalues of a covariance matrix
Author(s)
Diogo Melo
References
Shirai, Leila T, and Gabriel Marroig. 2010. "Skull Modularity in Neotropical Marsupials and Monkeys: Size Variation and Evolutionary Constraint and Flexibility." Journal of Experimental Zoology Part B: Molecular and Developmental Evolution 314 B (8): 663-83. doi:10.1002/jez.b.21367.
Porto, Arthur, Leila Teruko Shirai, Felipe Bandoni de Oliveira, and Gabriel Marroig. 2013. "Size Variation, Growth Strategies, and the Evolution of Modularity in the Mammalian Skull." Evolution 67 (July): 3305-22. doi:10.1111/evo.12177.
See Also
Examples
cov.matrix <- RandomMatrix(10, 1, 1, 10)
CalcICV(cov.matrix)