coefsLogReg: Coefficients for logistic regression analysis

View source: R/coefsLogReg.R

coefsLogRegR Documentation

Coefficients for logistic regression analysis

Description

Show odds ratios and their confidence intervals for logistic regression parameter estimates.

[Stable]

Usage

coefsLogReg(model, confint = TRUE, level = 0.95)

Arguments

model

object of class glm, with family parameter set to binomial.

confint

indicates whether a confidence interval for the odds ratio should be returned.

level

the confidence level required.

Value

coefsLogReg returns the same table as summary(object)$coefficients, with the addition of the coefficients' odds ratios and their confidence intervals.

Author(s)

Mathijs Deen

Examples

glm(formula = am ~  disp, family = binomial, data = mtcars) |>
 coefsLogReg()

MDMA documentation built on April 3, 2025, 11:10 p.m.

Related to coefsLogReg in MDMA...