Learn R Programming

psycho (version 0.4.91)

analyze.glmerMod: Analyze glmerMod objects.

Description

Analyze glmerMod objects.

Usage

# S3 method for glmerMod
analyze(x, CI = 95, effsize_rules = "cohen1988",
  ...)

Arguments

x

merModLmerTest object.

CI

Bootsrapped confidence interval bounds (slow). Set to NULL turn off their computation.

effsize_rules

Grid for effect size interpretation. See interpret_odds.

...

Arguments passed to or from other methods.

Value

output

References

Nakagawa, S., & Schielzeth, H. (2013). A general and simple method for obtaining R2 from generalized linear mixed-effects models. Methods in Ecology and Evolution, 4(2), 133-142.

Examples

Run this code
# NOT RUN {
library(psycho)
library(lme4)

fit <- lme4::glmer(vs ~ wt + (1 | gear), data = mtcars, family = "binomial")

results <- analyze(fit)
summary(results)
print(results)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab