50% off | Unlimited Data & AI Learning

Last chance! 50% off unlimited learning

Sale ends in


LMMstar (version 1.1.0)

estfun.lmm: Extract the Score Function for Multcomp

Description

Extract the Score Function for Multcomp. For internal use.

Usage

# S3 method for lmm
estfun(x, ...)

Value

A matrix containing the score function for each model parameter (columns) relative to each cluster (rows).

Arguments

x

a lmm object.

...

Not used. For compatibility with the generic method.

Examples

Run this code
## simulate data in the long format
set.seed(10)
dL <- sampleRem(100, n.times = 3, format = "long")

## fit Linear Mixed Model
eUN.lmm <- lmm(Y ~ X1 + X2 + X5, repetition = ~visit|id, structure = "UN", data = dL, df = FALSE)

## test multiple linear hypotheses
if(require(multcomp)){
LMMstar.options(effects = c("mean"))
e.glht <- multcomp::glht(eUN.lmm)
e.glht$linfct
}

Run the code above in your browser using DataLab