lm.beta.lmer: Obtain standardized regression coefficients from lmer model.

View source: R/lm.beta.lmer.R

lm.beta.lmerR Documentation

Obtain standardized regression coefficients from lmer model.

Description

Obtains standardized regression coefficients from the results of a model fit by the lme4() function of the lmer package.

Usage

lm.beta.lmer(model)

Arguments

model

name of lmer() model object.

Details

Obtains standardized regression coefficients from the results of a model fit by the lmer() function of the lme4 package.

Value

Standardized regression coefficients of lmer() model object.

See Also

https://stats.stackexchange.com/a/123448

Other mixedModel: lmeSummary()

Examples

# Fit Model
library("lme4")

sleepstudy$DaySq <- sleepstudy$Days^2
model <- lme4::lmer(Reaction ~ Days + DaySq + (Days | Subject), sleepstudy)

# Standardized regression coefficients
lm.beta.lmer(model)


petersenlab documentation built on Aug. 18, 2025, 5:14 p.m.