Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 2.32 KB

README.md

File metadata and controls

27 lines (20 loc) · 2.32 KB

SurvivalModels

Stable Dev Build Status Coverage Code Style: Blue ColPrac: Contributor's Guide on Collaborative Practices for Community Packages PkgEval Aqua

Roadmap

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 :

  1. 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.
  2. The solver used to fit the model, when needed, could be left to the user by leveraging the interface from Optimization.jl
  3. 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.