R/plot_estimates.R
glm_details.Rd
This function extracts and formats the estimates, confidence intervals, and p-values from a fitted glm model.
glm_details(model)
A fitted glm model object.
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)