# S3 method for glm
analyze(x, CI = 95, effsize_rules = "cohen1988", ...)
Arguments
x
glm object.
CI
Confidence interval bounds. 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)
fit <- glm(Sex ~ Adjusting, data = psycho::affective, family = "binomial")
results <- analyze(fit)
summary(results)
print(results)
# }