# 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.
# 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 {# }