brglm2
brglm2 provides tools for the estimation and inference from generalized linear models using various methods for bias reduction (Kosmidis, 2014). brglm2 supports all generalized linear models supported in R, and provides methods for multinomial logistic regression (nominal responses) and adjacent category models (ordinal responses).
Reduction of estimation bias is achieved by solving either the mean-bias reducing adjusted score equations in Firth (1993) and Kosmidis & Firth (2009) or the median-bias reducing adjusted score equations in Kenne et al (2016), or through the direct subtraction of an estimate of the bias of the maximum likelihood estimator from the maximum likelihood estimates as prescribed in Cordeiro and McCullagh (1991). Kosmidis et al (2019) provides a unifying framework and algorithms for mean and median bias reduction for the estimation of generalized linear models.
In the special case of generalized linear models for binomial and multinomial responses (both ordinal and nomial), the adjusted score equations return estimates with improved frequentist properties, that are also always finite, even in cases where the maximum likelihood estimates are infinite (e.g. complete and quasi-complete separation). See, Kosmidis & Firth (2019) for the proof of the latter result in the case of mean bias reduction for logistic regression (and, for more general binomial-response models where the likelihood is penalized by a power of the Jeffreys invariant prior).
brglm2 also provides pre-fit and post-fit methods for the detection of separation and of infinite maximum likelihood estimates in binomial response generalized linear models (see ?detect_separation
and ?check_infinite_estimates
).
Installation
Install the development version from github:
# install.packages("devtools")
devtools::install_github("ikosmidis/brglm2")
Solving adjusted score equations using quasi-Fisher scoring
The workhorse function in brglm2 is
brglmFit
,
which can be passed directly to the method
argument of the glm
function. brglmFit
implements a quasi Fisher
scoring procedure,
whose special cases result in a range of explicit and implicit bias
reduction methods for generalized linear models. Bias reduction for
multinomial logistic regression (nominal responses) can be performed
using the function brmultinom
, and for adjacent category models
(ordinal responses) using the function bracl
. Both brmultinom
and
bracl
rely on brglmFit
.
The iteration vignette and Kosmidis et al (2019) apresent the iteration and give mathematical details for the bias-reducing adjustments to the score functions for generalized linear models.
The classification of bias reduction methods into explicit and implicit is as given in Kosmidis (2014).
References and resources
brglm2 was presented by Ioannis Kosmidis at the useR! 2016 international conference at University of Stanford on 16 June 2016. The presentation was titled "Reduced-bias inference in generalized linear models" and can be watched online at this link.
Motivation, details and discussion on the methods that brglm2 implements are provided in
Kosmidis, I, Kenne Pagui, E C, Sartori N. (2017). Mean and median bias reduction in generalized linear models. To appear in Statistics and Computing. arXiv, arXiv:1710.11217.