Nothing
### levels.R ---
##----------------------------------------------------------------------
## Author: Brice Ozenne
## Created: okt 18 2021 (10:32)
## Version:
## Last-Updated: jun 14 2023 (15:05)
## By: Brice Ozenne
## Update #: 13
##----------------------------------------------------------------------
##
### Commentary:
##
### Change Log:
##----------------------------------------------------------------------
##
### Code:
##' @title Contrasts and Reference Level
##' @description Contrasts and reference level used when modeling the mean in a linear mixed modek.
##'
##' @param x an \code{lmm} object
##'
##' @return a list with two elements \itemize{
##' \item all: contrast matrix for each categorical or factor variable
##' \item reference: reference level: one value for each categorical variable
##' }
##'
##' @keywords methods
##'
##' @export
levels.lmm <- function(x){
data.X <- x$data[all.vars(stats::delete.response(stats::terms(x$formula$mean)))]
C <- lapply(data.X, function(iCol){
if(inherits(iCol,"factor")){stats::contrasts(iCol)}else if(inherits(iCol,"character")){stats::contrasts(as.factor(iCol))}
})
if(length(C)>0){
C <- C[!unlist(lapply(C, is.null))]
if(length(C)>0){
ref.level <- unlist(lapply(names(C), function(iC){
stats::setNames(rownames(C[[iC]])[1],iC)
}))
}else{
ref.level <- NULL
}
}else{
ref.level <- NULL
}
return(list(all = C, reference = ref.level))
}
##----------------------------------------------------------------------
### levels.R ends here
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.