adjBeta | R Documentation |
This function is a very simple function to add the intercept to all fixed effects except for the first term.
adjBeta(x)
x |
a numeric vector with fixed effects extracted by the fixef function. |
a numeric vector with the intercept added to all fixed effects except for the first term which corresponds to the intercept.
Giovanny Covarrubias-Pazaran
Giovanny Covarrubias-Pazaran (2024). lme4breeding: enabling genetic evaluation in the age of genomic data. To be submitted to Bioinformatics.
Douglas Bates, Martin Maechler, Ben Bolker, Steve Walker (2015). Fitting Linear Mixed-Effects Models Using lme4. Journal of Statistical Software, 67(1), 1-48.
The core function of the package lmebreed
data(DT_example)
DT <- DT_example
A <- A_example
ansMain <- lmebreed(Yield ~ Env + (1|Name),
relmat = list(Name = Matrix::chol(A) ),
data=DT)
fixef(ansMain)
adjBeta(fixef(ansMain))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.