Skip to main content

Python translation of survRM2 for Restricted Mean Survival Time (RMST) analysis

Project description

survRM2py

Publish to PyPI and Conda PyPI version License: GPL v3

survRM2py is a Python reimplementation of the popular R package survRM2 for Restricted Mean Survival Time (RMST) analysis. It is designed to achieve absolute mathematical parity with the R reference implementation.

RMST is a robust alternative to the hazard ratio for comparing survival curves, representing the average survival time up to a pre-specified time point (tau).


Installation

Standard Python Environment

You can install the package directly from PyPI:

pip install survrm2py

Quick Start Example

import numpy as np
import pandas as pd
from survrm2py import run_rmst

# 1. Create mock survival data
np.random.seed(42)
n = 200
data = pd.DataFrame({
    "time": np.random.exponential(scale=10, size=n),
    "event": np.random.binomial(n=1, p=0.7, size=n),
    "arm": np.random.binomial(n=1, p=0.5, size=n),
    "age": np.random.normal(loc=60, scale=10, size=n)
})

# 2. Run unadjusted and covariate-adjusted RMST at tau = 8.0
results = run_rmst(
    df=data,
    time_col="time",
    event_col="event",
    arm_col="arm",
    tau=8.0,
    covariates=["age"],
    method="ipcw_rmst2"
)

# 3. Print unadjusted differences
print(f"RMST Arm 1: {results['rmst_arm1']:.4f}")
print(f"RMST Arm 0: {results['rmst_arm0']:.4f}")
print(f"Unadjusted Diff: {results['rmst_diff_unadjusted']:.4f} (p={results['p_unadjusted']:.4f})")

# 4. View adjusted covariate summary table
print("\nAdjusted IPCW Regression Summary:")
print(results["adjusted_summary"])

Developer Guide (Pixi)

This package uses a unified pyproject.toml with tool.pixi environment manager.

Prerequisites

Make sure you have Pixi installed:

curl -fsSL https://pixi.sh/install.sh | bash

Running Tests

The test environment automatically sets up Python, R, and installs the reference survRM2 package from CRAN.

pixi run -e test test

Building Package Distribution Files

To build the distribution packages (.whl and .tar.gz) locally in a clean sandboxed environment:

pixi run -e test build

Built files will be generated under the dist/ directory.


License

This package is licensed under the GNU General Public License v3 or later (GPLv3+), which maintains consistency with CRAN's survRM2 licensing.

References

Uno H, Claggett B, Tian L, Inoue E, Gallo P, Miyata T, Schrag D, Takeuchi M, Uyama Y, Zhao L, Skali H, Solomon S, Jacobus S, HughesM, Packer M, Wei LJ. Moving beyond the hazard ratio in quantifying the between-group difference in survival analysis. Journal of clinical Oncology 2014, 32, 2380-2385. doi:10.1200/JCO.2014.55.2208.

Tian L, Zhao L, Wei LJ. Predicting the restricted mean event time with the subject's baseline covariates in survival analysis. Biostatistics 2014, 15, 222-233. doi:10.1093/biostatistics/kxt050.

Project details


Download files

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

Source Distribution

survrm2py-0.1.0.tar.gz (92.9 kB view details)

Uploaded Source

Built Distribution

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

survrm2py-0.1.0-py3-none-any.whl (20.0 kB view details)

Uploaded Python 3

File details

Details for the file survrm2py-0.1.0.tar.gz.

File metadata

  • Download URL: survrm2py-0.1.0.tar.gz
  • Upload date:
  • Size: 92.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for survrm2py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e72c82d62b64f93e6ec814e84d2f84d3a1d2f2241617561d7172d9c3b424aac2
MD5 353b4a3f712bb801bc4233529ce8f004
BLAKE2b-256 02a380f05adfcc3444b8ae26278f6ddbe44949cf497d252589d188d47b774277

See more details on using hashes here.

Provenance

The following attestation bundles were made for survrm2py-0.1.0.tar.gz:

Publisher: publish.yml on j-bac/survRM2py

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

File details

Details for the file survrm2py-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: survrm2py-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 20.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for survrm2py-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 74e6f00077cd9b0160db9283525553b6974fb928d4c967277d2966f21299324f
MD5 bbc0f9d358b3724d0604c4d7fb68d2e0
BLAKE2b-256 a2bce31d9876cc4f6f4611a1c53f2799feeda1ef3e8d098e585a70bc5eb4d0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for survrm2py-0.1.0-py3-none-any.whl:

Publisher: publish.yml on j-bac/survRM2py

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page