Skip to contents

This function extracts and formats the estimates, confidence intervals, and p-values from a fitted glm model.

Usage

glm_details(model)

Arguments

model

A fitted glm model object.

Value

A tibble containing the estimates, confidence intervals, and p-values for each predictor in the model.

Example model <- glm(R ~ ., data=dat, family = binomial(link = "logit")) model_details <- glm_details(model) autoplot(model_details)