A Python package for simulating survival data, inspired by the R package genSurv
Project description
gen_surv
gen_surv is a Python package for simulating survival data under a variety of models, inspired by the R package genSurv. It supports data generation for:
- Cox Proportional Hazards Models (CPHM)
- Continuous-Time Markov Models (CMM)
- Time-Dependent Covariate Models (TDCM)
- Time-Homogeneous Hidden Markov Models (THMM)
๐ฆ Installation
poetry install
โจ Features
- Consistent interface across models
- Censoring support (
uniformorexponential) - Easy integration with
pandasandNumPy - Suitable for benchmarking survival algorithms and teaching
๐งช Example
from gen_surv.cphm import gen_cphm
df = gen_cphm(
n=100,
model_cens="uniform",
cens_par=1.0,
beta=0.5,
covar=2.0
)
print(df.head())
from gen_surv import generate
df = generate(
model="cphm",
n=100,
model_cens="uniform",
cens_par=1.0,
beta=0.5,
covar=2.0
)
print(df.head())
๐ง Available Generators
| Function | Description |
|---|---|
gen_cphm() |
Cox Proportional Hazards Model |
gen_cmm() |
Continuous-Time Multi-State Markov Model |
gen_tdcm() |
Time-Dependent Covariate Model |
gen_thmm() |
Time-Homogeneous Markov Model |
genSurvPy/
โโโ gen_surv/ # Pacote principal
โ โโโ __main__.py # Interface CLI via python -m
โ โโโ cphm.py
โ โโโ cmm.py
โ โโโ tdcm.py
โ โโโ thmm.py
โ โโโ censoring.py
โ โโโ bivariate.py
โ โโโ validate.py
โ
โโโ tests/ # Testes automatizados
โ โโโ test_cphm.py
โ โโโ test_cmm.py
โ โโโ test_tdcm.py
โ โโโ test_thmm.py
โ
โโโ examples/ # Exemplos de uso
โ โโโ run_cphm.py
โ โโโ ...
โ
โโโ pyproject.toml # Configurado com Poetry
โโโ README.md
โโโ LICENSE
โโโ .gitignore
๐ง License
MIT License. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
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-0.6.7.tar.gz
(8.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
gen_surv-0.6.7-py3-none-any.whl
(12.1 kB
view details)
File details
Details for the file gen_surv-0.6.7.tar.gz.
File metadata
- Download URL: gen_surv-0.6.7.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.0 CPython/3.9.13 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de90d3a81f354b54f08cc556f04482c77d60d673f61cf4de2c21f7e94c06f088
|
|
| MD5 |
d5f02137df495859a170cd190f59f8a7
|
|
| BLAKE2b-256 |
aaeac794fa940bbda48a98d650dce97d0e219ee222b7c07c918513f2b1d48cec
|
File details
Details for the file gen_surv-0.6.7-py3-none-any.whl.
File metadata
- Download URL: gen_surv-0.6.7-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.0 CPython/3.9.13 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbec6a09b1412a45d075675bbb672c1bc670b51823578fc84203d4fba6fe963d
|
|
| MD5 |
a1874db5628eacf86e89901525c3f3d8
|
|
| BLAKE2b-256 |
723b3e9f225732ceb363b44fe47d682b67ee518a78b8dcdbc16c5a834a2744c6
|