decomp_kinship {qtl2} | R Documentation |
Calculate eigen decomposition of kinship matrix
Description
Calculate the eigen decomposition of a kinship matrix, or of a list of such matrices.
Usage
decomp_kinship(kinship, cores = 1)
Arguments
kinship |
A square matrix, or a list of square matrices. |
cores |
Number of CPU cores to use, for parallel calculations.
(If |
Details
The result contains an attribute "eigen_decomp"
.
Value
The eigen values and the transposed eigen vectors,
as a list containing a vector values
and a matrix
vectors
.
Examples
iron <- read_cross2(system.file("extdata", "iron.zip", package="qtl2"))
map <- insert_pseudomarkers(iron$gmap, step=1)
probs <- calc_genoprob(iron, map, error_prob=0.002)
K <- calc_kinship(probs)
Ke <- decomp_kinship(K)
[Package qtl2 version 0.36 Index]