Skip to main content

qualia_core_db/solvers/learning/survival/
mod.rs

1//! Survival analysis (ISL ch 11) — time-to-event modelling with right censoring.
2//! Time-indexed provenance / life-record reasoning is temporal, so these are the
3//! standard estimators over censored temporal evidence.
4//!
5//! - [`kaplan_meier`] — nonparametric survival curve `S(t)`.
6//! - [`cox`] — Cox proportional-hazards regression (covariate effects on the hazard).
7
8pub mod cox;
9pub mod kaplan_meier;
10
11pub use cox::{fit as fit_cox, CoxModel};
12pub use kaplan_meier::KaplanMeier;