Published February 20, 2019
| Version v0.19.0
Software
Open
CamDavidsonPilon/lifelines: v0.19.0
Authors/Creators
- Cameron Davidson-Pilon
- Jonas Kalderstam1
- Paul Zivich
- Ben Kuhn2
- Andrew Fiore-Gartland3
- Luis Moneda4
- Gabriel
- Daniel WIlson5
- Alex Parij6
- Kyle Stark
- Steven Anton7
- Lilian Besson8
- Jona9
- Harsh Gadgil10
- Dave Golland
- Sean Hussey11
- Javad Noorbakhsh12
- Andreas Klintberg
- Joanne Jordan
- Jeff Rose13
- Isaac Slavitt
- Eric Martin
- Eduardo Ochoa
- Dylan Albrecht
- dhuynh14
- Denis Zgonjanin15
- Daniel Chen16
- Chris Fournier15
- Arturo17
- André F. Rendeiro18
- 1. @neo4j
- 2. Wave
- 3. Fred Hutchinson Cancer Research Center
- 4. @nubank
- 5. @Esri
- 6. Autodesk
- 7. ID Analytics
- 8. ENS de Cachan - Paris Saclay University
- 9. Berlin Institute for Medical Systems Biology
- 10. Bell
- 11. Ampion, Inc.
- 12. @TheJacksonLaboratory
- 13. Origin Rose
- 14. @Microsoft
- 15. Shopify
- 16. @VirginiaTech - @bi-sdal - GBCB
- 17. IKNL
- 18. CeMM Research Center for Molecular Medicine of the Austrian Academy of Sciences
Description
0.19.0
New features
- New regression model
WeibullAFTFitterfor fitting accelerated failure time models. Docs have been added to our documentation about how to useWeibullAFTFitter(spoiler: it's API is similar to the other regression models) and how to interpret the output. CoxPHFitterperformance improvements (about 10%)CoxTimeVaryingFitterperformance improvements (about 10%)
- Important: we changed the
.hazards_and.standard_errors_on Cox models to be pandas Series (instead of Dataframes). This felt like a more natural representation of them. You may need to update your code to reflect this. See notes here: https://github.com/CamDavidsonPilon/lifelines/issues/636 - Important: we changed the
.confidence_intervals_on Cox models to be transposed. This felt like a more natural representation of them. You may need to update your code to reflect this. See notes here: https://github.com/CamDavidsonPilon/lifelines/issues/636 - Important: we changed the parameterization of the
WeibullFitterandExponentialFitterfrom\lambda * ttot / \lambda. This was for a few reasons: 1) it is a more common parameterization in literature, 2) it helps in convergence. - Important: in models where we add an intercept (currently only
AalenAdditiveModel), the name of the added column has been changed frombaselineto_intercept - Important: the meaning of
alphain all fitters has changed to be the standard interpretation of alpha in confidence intervals. That means that the default for alpha is set to 0.05 in the latest lifelines, instead of 0.95 in previous versions.
- Fixed a bug in the
_log_likelihood_property ofParametericUnivariateFittermodels. It was showing the "average" log-likelihood (i.e. scaled by 1/n) instead of the total. It now displays the total. - In model
print_summarys, correct a label erroring. Instead of "Likelihood test", it should have read "Log-likelihood test". - Fixed a bug that was too frequently rejecting the dtype of
eventcolumns. - Fixed a calculation bug in the concordance index for stratified Cox models. Thanks @airanmehr!
- Fixed some Pandas <0.24 bugs.
Files
CamDavidsonPilon/lifelines-v0.19.0.zip
Files
(4.2 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:7dae59cb21c3fe7bb855505994329526
|
4.2 MB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/CamDavidsonPilon/lifelines/tree/v0.19.0 (URL)