getAInv {pedigreemm} | R Documentation |
Inverse of the relationship matrix
Description
Inverse of the Relationship matrix from a pedigree
Usage
getAInv(ped)
Arguments
ped |
a pedigree that includes the individuals who occur in |
Details
Determine the inverse of the relationship matrix from a pedigree
ped
.
Value
sparse matrix, inverse of the relationship matrix
References
2010. A.I. Vazquez, D.M. Bates, G.J.M. Rosa, D. Gianola and K.A. Weigel. Technical Note: An R package for fitting generalized linear mixed models in animal breeding. Journal of Animal Science, 88:497-504.
Examples
## Example from chapter 2 of Mrode (2005)
ped <- pedigree(sire = c(NA,NA,1, 1,4,5),
dam = c(NA,NA,2,NA,3,2), label= 1:6)
getAInv(ped)
[Package pedigreemm version 0.3-4 Index]