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.

Example library(logistf) model <- logistf(R ~ ., data=dat) model_details <- logistf_details(model) autoplot(model_details)