R/covMat.mcemGLMM.R

Defines functions covMat.mcemGLMM

Documented in covMat.mcemGLMM

covMat.mcemGLMM <- function(object, ...) {
  kP <- ncol(object$x)
  fMat <- solve(object$iMatrix)
  fMat <- fMat[1:kP, 1:kP]
  colnames(fMat) <- colnames(object$x)
  rownames(fMat) <- colnames(object$x)
  return(fMat)
}

Try the mcemGLM package in your browser

Any scripts or data that you put into this service are public.

mcemGLM documentation built on April 3, 2023, 5:43 p.m.