Summary method for logistf models, currently this method is only used in step_bw_firth function.
References
Heinze G, Ploner M, Jiricka L, Steiner G. logistf: Firth’s Bias-Reduced Logistic Regression. 2023. available on: https://CRAN.R-project.org/package=logistf
Examples
# Only use if you want a non-printable version of 'summary' for a logistfnp object.
if (requireNamespace("logistf")) {
library(logistf)
data <- mtcars
data$am <- as.factor(data$am)
regression_model <- logistf::logistf(am ~ mpg + cyl + disp, data = data)
logistf_summary(regression_model)
}
