Releases: jzluo/firthlogist
Releases · jzluo/firthlogist
v0.5.0
v0.4.0
v0.4.0 adds the Wald option and a few other changes.
Added
- Option to use Wald method for computing p-values and confidence intervals instead of LRT and profile likelihood. Set
wald=True
to use (#11). - Tests for
load_sex2()
andload_endometrial()
(#9). - Test for profile likelihood confidence intervals (#9).
Changed
skip_lrt
option is nowskip_pvals
(#11).
Fixed
.summary()
no longer breaks if skipping confidence interval or p-value calculation (#11).
Removed
- Diabetes and sex2 csv files removed from testing dir (#9).
v0.3.1
v0.3.0
v0.2.0
v0.2.0 Release Notes
v0.2.0 is the MVP release implemented in Numpy and Scipy.
New Features
- Penalized likelihood ratio tests to compute p-values (#2)
- Calculate confidence intervals using profile penalized likelihood (#5)
skip_ci
parameter to skip calculation of confidence intervals.alpha
parameter to specify confidence interval.pl_max_iter
,pl_max_halfstep
,pl_max_stepsize
parameters for controlling profile penalized likelihood procedure.
Changed
- Predictions calculated during fitting procedure are now clipped to the range
[1e-15, 1-1e-15]
instead of[0, 1]
.