|
1 | | -### Changelogs |
| 1 | +### Changelog |
2 | 2 |
|
3 | | -### 0.18.5 |
| 3 | +#### 0.18.6 |
| 4 | + - some improvements to the output of `check_assumptions`. `show_plots` is turned to `False` by default now. It only shows `rank` and `km` p-values now. |
| 5 | + - some performance improvements to `qth_survival_time`. |
| 6 | + |
| 7 | +#### 0.18.5 |
4 | 8 | - added new plotting methods to parametric univariate models: `plot_survival_function`, `plot_hazard` and `plot_cumulative_hazard`. The last one is an alias for `plot`. |
5 | 9 | - added new properties to parametric univarite models: `confidence_interval_survival_function_`, `confidence_interval_hazard_`, `confidence_interval_cumulative_hazard_`. The last one is an alias for `confidence_interval_`. |
6 | 10 | - Fixed some overflow issues with `AalenJohansenFitter`'s variance calculations when using large datasets. |
7 | 11 | - Fixed an edgecase in `AalenJohansenFitter` that causing some datasets with to be jittered too often. |
8 | 12 | - Add a new kwarg to `AalenJohansenFitter`, `calculate_variance` that can be used to turn off variance calculations since this can take a long time for large datasets. Thanks @pzivich! |
9 | 13 |
|
10 | | -### 0.18.4 |
| 14 | +#### 0.18.4 |
11 | 15 | - fixed confidence intervals in cumulative hazards for parametric univarite models. They were previously |
12 | 16 | serverly depressed. |
13 | 17 | - adding left-truncation support to parametric univarite models with the `entry` kwarg in `.fit` |
14 | 18 |
|
15 | | -### 0.18.3 |
| 19 | +#### 0.18.3 |
16 | 20 | - Some performance improvements to parametric univariate models. |
17 | 21 | - Suppressing some irrelevant NumPy and autograd warnings, so lifeline warnings are more noticeable. |
18 | 22 | - Improved some warning and error messages. |
19 | 23 |
|
20 | | -### 0.18.2 |
| 24 | +#### 0.18.2 |
21 | 25 | - New univariate fitter `PiecewiseExponentialFitter` for creating a stepwise hazard model. See docs online. |
22 | 26 | - Ability to create novel parametric univariate models using the new `ParametericUnivariateFitter` super class. See docs online for how to do this. |
23 | 27 | - Unfortunately, parametric univariate fitters are not serializable with `pickle`. The library `dill` is still useable. |
24 | 28 | - Complete overhaul of all internals for parametric univariate fitters. Moved them all (most) to use `autograd`. |
25 | 29 | - `LogNormalFitter` no longer models `log_sigma`. |
26 | 30 |
|
27 | 31 |
|
28 | | -### 0.18.1 |
| 32 | +#### 0.18.1 |
29 | 33 | - bug fixes in `LogNormalFitter` variance estimates |
30 | 34 | - improve convergence of `LogNormalFitter`. We now model the log of sigma internally, but still expose sigma externally. |
31 | 35 | - use the `autograd` lib to help with gradients. |
32 | 36 | - New `LogLogisticFitter` univariate fitter available. |
33 | 37 |
|
34 | | -### 0.18.0 |
| 38 | +#### 0.18.0 |
35 | 39 | - `LogNormalFitter` is a new univariate fitter you can use. |
36 | 40 | - `WeibullFitter` now correctly returns the confidence intervals (previously returned only NaNs) |
37 | 41 | - `WeibullFitter.print_summary()` displays p-values associated with its parameters not equal to 1.0 - previously this was (implicitly) comparing against 0, which is trivially always true (the parameters must be greater than 0) |
|
45 | 49 | - new warning message when Cox models detects possible non-unique solutions to maximum likelihood. |
46 | 50 | - Generally: clean up lifelines exception handling. Ex: catch `LinAlgError: Matrix is singular.` and report back to the user advice. |
47 | 51 |
|
48 | | -### 0.17.5 |
| 52 | +#### 0.17.5 |
49 | 53 | - more bugs in `plot_covariate_groups` fixed when using non-numeric strata. |
50 | 54 |
|
51 | 55 | #### 0.17.4 |
|
0 commit comments