lm.beta.lmer | R Documentation |
Obtains standardized regression coefficients from the results of a model fit
by the lme4()
function of the lmer
package.
lm.beta.lmer(model)
model |
name of |
Obtains standardized regression coefficients from the results of a model fit
by the lmer()
function of the lme4
package.
Standardized regression coefficients of lmer()
model object.
https://stats.stackexchange.com/a/123448
Other mixedModel:
lmeSummary()
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.