This package is for the moment empty. The goal of this implementation is to provide an iterface to fit on standard survival problems (that is, one censored time to event is observed, eventually with covariates), the following models:
- Non-parametric: Kaplan-Meier, Nelson-Aalen, Log-rank Test, ...
- Semi-parametric: Cox, Aalen, ...
- Parametric: General Hazard (sucessor of
HazReg.jl
), General Odds, ... - Frailties ? Dont know yet.
A few notes on details :
- For all the semi-paramtric and parametric models, we need to provide an interface that clearly gives the coefficients, eventually statistics about them (significances ? others ?). We might leverage the standard modeling interface from
StatsBase.jl
/StatsAPI.jl
/StatsModels.jl
. - The solver used to fit the model, when needed, could be left to the user by leveraging the interface from
Optimization.jl
- Through a junction with
NetSurvival.jl
, the same kind of models would be fittable on net survival data, i.e. with a population mortality offset.
This is still work to be done of course.