You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added the enzymes and hepatitis data sets (from the pmlr) to support examples and tests.
brglm2 0.9.0
New functionality
The expo() method for brglmFit and glm objects estimates the exponential of parameters of generalized linear models with maximum likelihood or various mean and median bias reduction methods (see ?expo for details). The expo() method is particularly useful for computing (corrected) estimates of the multiplicative impact of a unit increase on a covariate on the mean of a Poisson log-linear model (family = poisson("log") in glm()) while adjusting for other covariates, the odds ratio associated with a unit increase on a covariate in a logistic regression model (family = binomial("logit") in glm()) while adjusting for other covariates, the relative risk associated with a unit increase on a covariate in a relative risk regression model (family = binomial("log") in glm()) while adjusting for other covariates, among others.
Bug fixes
Fixed a bug where the dispersion in the resulting object would not be transformed even if transformation != "identity" when type is ML or AS_median or AS_mixed.