Learn R Programming

lme4breeding (version 1.0.90)

getCi: Get the inverse coefficient matrix

Description

Retrieve the inverse of the coefficient matrix from the mixed model equations.

Usage

getCi(object)

Value

Matrix

Arguments

object

model object of class lmebreed

Author

Giovanny Covarrubias

See Also

image, lmebreed

Examples

Run this code

data(DT_example)
DT <- DT_example
A <- A_example
head(DT)

## Compound simmetry (CS) model
ans1 <- lmebreed(Yield~Env + (1|Name) + (1|Env:Name),
                 data=DT)
vc <- VarCorr(ans1); print(vc,comp=c("Variance"))

PEV <- getCi(ans1)
# image(PEV)

Run the code above in your browser using DataLab