Description Usage Arguments Value Examples
Calculate XHiY
1 |
eval |
vector of eigenvalues from the decomposition of the relatedness matrix |
D_l |
vector of length d_size |
X |
design matrix |
UltVehiY |
a matrix |
numeric vector
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | readr::read_tsv(system.file("extdata",
"mouse100.pheno.txt",
package = "gemma2"),
col_names = FALSE) -> pheno
phe16 <- as.matrix(pheno[, c(1, 6)])
as.matrix(readr::read_tsv(system.file("extdata",
"mouse100.cXX.txt",
package = "gemma2"),
col_names = FALSE)[, 1:100]) -> kinship
eigen2(kinship) -> eout
eout$values -> eval
eout$vectors -> U
UltVehi <- matrix(c(0, -1.76769, -1.334414, 0),
nrow = 2,
byrow = FALSE) # from output of eigen_proc()
calc_XHiY(eval = eval,
D_l = c(0.9452233, 5.9792268),
X = rep(1, 100) %*% U,
UltVehiY = UltVehi %*% t(phe16) %*% U
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.