R/AllGeneric.R

Defines functions getInfo u b

Documented in getInfo

#####################################################
## Accessor methods                                ##
#####################################################

## Simple accessor for the (spherical) random effects.
##
## @title Random effects accessor
## @param object merMod object
## @param ... ignored
b <- function(object, ...) UseMethod("b")

## @rdname b
u <- function(object, ...) UseMethod("u")

#####################################################
## Summary / printing methods                      ##
#####################################################

##' The function \code{getInfo} is internally used to prepare object for
##' producing a comparison chart in \code{compare}.
##'
##' @rdname compare
##' @param object object
##' @return \code{getInfo} returns a list with estimated coefficients, estimated
##'   variance components, sigma, deviance and parameter configuration used to
##'   fit.
##' @export
getInfo <- function(object, ...) UseMethod("getInfo")

Try the robustlmm package in your browser

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

robustlmm documentation built on Nov. 15, 2023, 1:07 a.m.