Skip to main content

gen_surv

Simulate survival data with a known truth.

PyPI Python Tests Coverage Docs License

gen_surv generates synthetic time-to-event datasets from twelve models — proportional hazards, accelerated failure time, competing risks, cure fractions, piecewise hazards, recurrent events and two illness-death processes — so you can test an estimator against parameters you chose yourself.

It is a Python port of the R package genSurv, extended well past the original's four models.

📖 Documentation · 🚀 Quickstart · 🧪 Choosing a model

Install

pip install gen-surv

Python 3.11, 3.12 and 3.13. Everything is included except scikit-survival, which is optional and needed only for the two conversion helpers:

pip install scikit-survival

Thirty seconds

from gen_surv import generate

df = generate(
    model="cphm",           # Cox proportional hazards
    n=6,
    beta=0.5,               # log hazard ratio
    covariate_range=2.0,    # X0 ~ Uniform(0, 2)
    model_cens="uniform",
    cens_par=1.0,
    seed=42,
)
print(df)
       time  status        X0
0  0.438878     0.0  1.547912
1  0.094177     0.0  1.394736
2  0.037041     1.0  1.522279
3  0.370798     0.0  0.900772
4  0.646901     1.0  1.287730
5  0.251113     1.0  0.454477

You picked beta = 0.5, so you know what a correct estimator should recover:

from lifelines import CoxPHFitter

df = generate(model="cphm", n=5000, beta=0.5, covariate_range=2.0,
              model_cens="uniform", cens_par=1.0, seed=7)

CoxPHFitter().fit(df, duration_col="time", event_col="status").params_
# X0    0.501

That is the whole idea. Every column was produced by a mechanism you specified, so anything an estimator gets wrong is the estimator's fault.

The twelve models

model= Family Rows per subject
cphm Cox proportional hazards 1
aft_ln Log-normal AFT 1
aft_weibull Weibull AFT 1
aft_log_logistic Log-logistic AFT 1
piecewise_exponential Piecewise constant hazard 1
competing_risks Cause-specific constant hazards 1
competing_risks_weibull Cause-specific Weibull hazards 1
mixture_cure Logistic cure + exponential failure 1
cmm Illness-death, counting-process intervals 2 or 3
thmm Illness-death, observed state panel 2 or 3
tdcm Cox with a time-dependent covariate 1
recurrent_events Repeated events: Andersen-Gill, PWP 1 per at-risk interval

Every model has a page covering its parameters, the mathematics, a worked example, and a check that the parameters can be recovered from the data it generates — start at Choosing a model.

The output shape is not the same for every model. Multi-state generators return several rows per subject, and column names differ between families. See Output schemas before writing code that consumes a generated frame.

The ground truth, not just the data

A generated frame looks like a real one — which means it hides the same things. simulate() hands back what a real dataset never could:

from gen_surv import simulate

result = simulate("cphm", n=1000, beta=0.5, covariate_range=2.0,
                  model_cens="uniform", cens_par=1.0, seed=42)

result.data                      # the frame generate() would return
result.config                    # model, parameters, seed, gen_surv version
result.truth["event_time"]       # when each subject would have failed
result.truth["censoring_time"]   # what censoring hid

Several models draw their coefficients for you when you leave them out. result.truth["betas"] is the only way to learn what they were — without it those datasets cannot validate anything.

Any hazard shape

Every generator that draws a time inverts a cumulative hazard, so the shape is a parameter rather than a fork in the code:

from gen_surv import generate, LogLogisticBaseline

recurrent = generate(model="recurrent_events", n=500,
                     baseline=LogLogisticBaseline(shape=2.0, scale=1.5),
                     betas=[0.4, -0.2], followup_time=6.0, seed=1)

Exponential, Weibull, Gompertz, log-logistic and piecewise-constant are built in, and anything implementing hazard, cumulative_hazard and its inverse works too.

Beyond generating

from gen_surv import describe_survival, plot_survival_curve, export_dataset, to_sksurv

describe_survival(df)              # events, censoring, median follow-up
plot_survival_curve(df)            # Kaplan-Meier, optionally stratified
export_dataset(df, "data.rds")     # csv, json, feather or rds
to_sksurv(df)                      # structured array for scikit-survival
  • Ground truth — configurations, latent times, the coefficients actually used
  • Baseline hazards — the five families, and writing your own
  • Censoring — the built-in mechanisms, hitting a target event rate, applying your own distribution
  • Covariates — the three schemes across model families
  • Summaries — event counts, quality checks, dataset comparison
  • Plotting — survival curves, hazard comparisons, covariate effects
  • Fitting models — lifelines, scikit-survival, scikit-learn, R

Command line

gen_surv dataset cphm --n 1000 --beta 0.5 --seed 42 -o survival.csv
gen_surv visualize survival.csv --group-col X0 --output km.png

Repeat a flag for list arguments — --beta 0.5 --beta -0.3. Every one of the twelve models is reachable from the command line. Full option reference in the CLI guide.

Reproducibility

Every generator takes a seed, accepting an int or a numpy.random.Generator. The same seed on the same version always gives the same frame, on any platform.

A bug fix in a sampler changes the draws a seed produces, so pin the version alongside the seed for anything that must reproduce:

gen-surv==2.1.0

See Reproducibility.

Documentation

https://diogoribeiro7.github.io/genSurvPy/

Section Contents
Getting started Installation, quickstart, output schemas, reproducibility
Models Per-model parameters, mathematics, examples, recovery checks
Guides Censoring, covariates, summaries, plotting, export, interoperability, CLI
Theory The mathematics behind every generator, plus the bibliography
API Full reference, generated from the source

Built with Material for MkDocs and mkdocstrings, and rebuilt from the release tag by the Pages workflow — so it documents the version on PyPI, not unreleased work.

Development

git clone https://github.com/DiogoRibeiro7/genSurvPy.git
cd genSurvPy
poetry install --with dev

pre-commit install
pre-commit run --all-files     # black, isort, flake8, mypy
pytest                         # tests needing optional packages skip themselves

Docs:

poetry install --with docs
poetry run mkdocs serve        # live reload on http://127.0.0.1:8000

On Debian and Ubuntu, building scikit-survival may need build-essential gfortran libopenblas-dev.

Work happens on develop; main carries releases. See CONTRIBUTING.md.

Citation

@software{ribeiro_gensurv,
  title   = {gen_surv: Survival Data Simulation in Python},
  author  = {Diogo Ribeiro},
  url     = {https://github.com/DiogoRibeiro7/genSurvPy},
  version = {2.1.0}
}

Machine-readable metadata: CITATION.cff and .zenodo.json.

License

MIT — see LICENSE.

Author

Diogo RibeiroESMAD, Instituto Politécnico do Porto

GitHub stars GitHub forks

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gen_surv-2.1.0.tar.gz (56.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gen_surv-2.1.0-py3-none-any.whl (67.0 kB view details)

Uploaded Python 3

File details

Details for the file gen_surv-2.1.0.tar.gz.

File metadata

  • Download URL: gen_surv-2.1.0.tar.gz
  • Upload date:
  • Size: 56.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gen_surv-2.1.0.tar.gz
Algorithm Hash digest
SHA256 84d53e7e7fe5f0244906064e158aea3683c0bba3a842421994fb79a5a4b1d538
MD5 75a786d6626d5276ffa74050143088c0
BLAKE2b-256 94280c0cbcaec78ae916753babd2c31e9fa6fa6d9894bbe1559af9340b01ae2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gen_surv-2.1.0.tar.gz:

Publisher: publish.yml on DiogoRibeiro7/genSurvPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file gen_surv-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: gen_surv-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 67.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for gen_surv-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2b6849858cfde3edd41ec82194f2e40d5f0976f32a3a13d01d40339a10775ebe
MD5 1acdd8254f0714583e54a108d84cd294
BLAKE2b-256 2bdc04467954053045f6fe196cd1b29e21b4d69c95c1c74b0e99a1f568a2d903

See more details on using hashes here.

Provenance

The following attestation bundles were made for gen_surv-2.1.0-py3-none-any.whl:

Publisher: publish.yml on DiogoRibeiro7/genSurvPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

3.1.2

2 files

3.1.1

2 files

3.1.0

2 files

3.0.0

2 files

This release

2.1.0 This release

2 files

2.0.1

2 files

2.0.0

2 files

1.3.0

2 files

1.2.0

2 files

1.0.8

2 files

1.0.7

2 files

1.0.5

2 files

1.0.3

2 files

0.7.4

2 files

0.7.2

2 files

0.7.1

2 files

0.6.9

2 files

0.6.7

2 files

0.6.6

2 files

0.6.3

2 files

0.6.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page