makeAinv | R Documentation |
Makes inverted A matrix for a pedigree and stores it in a file called
Ainv.txt
.
makeAinv(ped)
ped |
|
Logical.
id <- 1:6 dam <- c(0,0,1,1,4,4) sire <- c(0,0,2,2,3,5) ped <- data.frame(id,dam,sire) makeAinv(ped) Ai <- read.table('Ainv.txt') nInd <- nrow(ped) Ainv <- matrix(0,nrow = nInd,ncol = nInd) Ainv[as.matrix(Ai[,1:2])] <- Ai[,3] dd <- diag(Ainv) Ainv <- Ainv + t(Ainv) diag(Ainv) <- dd if(file.exists("Ainv.txt")) file.remove("Ainv.txt")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.