Adding models for estimating counterfactual outcomes in a setting of right-censored data (also known as survival analysis, or time-to-event modeling).
The methods that are currently available are:
Weighting: causallib.survival.WeightedSurvival - uses causallib's WeightEstimator (e.g., IPW) to generate weighted pseudo-population for survival analysis.
Standardization (parametric g-formula): causallib.survival.StandardizedSurvival - fits a parametric hazards model that includes baseline covariates. Can use a scikit-learn classifier for pooled regression or a lifelines fitter.
Weighted Standardization: causallib.survival.WeightedStandardizedSurvival - combines the two above-mentioned methods.
Adding models for estimating counterfactual outcomes in a setting of right-censored data (also known as survival analysis, or time-to-event modeling).
The methods that are currently available are:
causallib.survival.WeightedSurvival
- usescausallib
'sWeightEstimator
(e.g.,IPW
) to generate weighted pseudo-population for survival analysis.causallib.survival.StandardizedSurvival
- fits a parametric hazards model that includes baseline covariates. Can use a scikit-learn classifier for pooled regression or a lifelines fitter.causallib.survival.WeightedStandardizedSurvival
- combines the two above-mentioned methods.