-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
In the current version 0.1.10, the relationship matrix is passed to relmatLmer
and then it is decomposed by Cholesky/EVD. The decomposition operation is not visible to the user and there is little control over, e.g. errors. See also issue #1.
library(lme4qtl)
data(dat40)
mod <- relmatLmer(trait1 ~ 1 + (1|ID), dat40, relmat = list(ID = kin2))
It would be helpful to have something like this:
evd_kin2 <- eigen(kin2)
mod <- relmatLmer(trait1 ~ 1 + (1|ID), dat40, relmat = list(ID = evd_kin2))