Skip to contents

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

Usage

logistf_details(model)

Arguments

model

A fitted logistf model object.

Value

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

Examples

library(logistf)
library(ggplot2)
model <- logistf(case ~ age + oc + vic + vicl + vis + dia, data = sex2)
model_details <- logistf_details(model)
autoplot(model_details)