I am currently fitting a penalized logistic regression model using the package logistf
(due to quasi-complete separation).
I chose this package over brglm
because I found much more recommendations for logistf
. However, the brglm
seems to integrate better with other functions such as predict()
or margins::margins()
. In the documentation of brglm it says:
"Implementations of the bias-reduction method for logistic regressions can also be found in thelogistf package. In addition to the obvious advantage ofbrglmin the range of link functions that can be used ("logit","probit","cloglog"and"cauchit"), brglm is also more efficient computationally."
Has anyone experience with those two packages and can tell me whether I am overlooking a weakness in brglm
, or can I just use it instead of logistf
?
I'd be grateful for any insights!