R/print.lmme.R

Defines functions print.lmme

print.lmme <-
function(x,...) {
    # 0. part
    print(x$call)
cat("\n")
    # 1. part
cat("Random effects:","\n")
cat("Variance of the random effects:\n")
print(x$Psi)
cat("\n")
cat("Variance of the residuals", x$sigma_e,"\n\n")

    # 2. part
cat("Fixed effects:", "\n")
cat(x$beta,"\n")

}

Try the MMS package in your browser

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

MMS documentation built on May 2, 2019, 12:38 p.m.