scikit-survival-analysis

Perform time-to-event survival analysis with scikit-survival models.

298|27|Updated Feb 18, 2026
One-click install
npx skills add https://github.com/jaechang-hits/SciAgent-Skills --skill scikit-survival-analysis
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: scikit-survival-analysis
Source: https://github.com/jaechang-hits/SciAgent-Skills/tree/main/skills/biostatistics/scikit-survival-analysis
Command: npx skills add https://github.com/jaechang-hits/SciAgent-Skills --skill scikit-survival-analysis

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill enables sophisticated analysis of time-to-event data, crucial for understanding patient survival, equipment reliability, or customer churn, especially when dealing with censored observations.

Core Features & Use Cases

  • Model Fitting: Supports Cox proportional hazards, Random Survival Forests, Gradient Boosting, and SVMs for censored data.
  • Evaluation: Provides censoring-aware metrics like C-index and Integrated Brier Score.
  • Data Handling: Includes utilities for preparing survival data structures and handling competing risks.
  • Use Case: Predict patient survival probability based on clinical features, accounting for patients who are still alive at the end of the study (censored).

Quick Start

Use the scikit-survival-analysis skill to fit a Random Survival Forest model to the provided training data and evaluate its performance on the test set.

Frequently Asked Questions about scikit-survival-analysis

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I perform survival analysis on right-censored time-to-event data?

Survival analysis on right-censored time-to-event data is performed using models like Cox proportional hazards and Random Survival Forests to estimate event probabilities while accounting for incomplete observations.

Can I use Random Survival Forests for clinical patient survival prediction?

Random Survival Forests can be used for clinical patient survival prediction by fitting the model to clinical features and evaluating performance with censoring-aware metrics like the concordance index.

What is the best way to evaluate a Cox proportional hazards model with censored data?

The best way to evaluate a Cox proportional hazards model with censored data is by using censoring-aware metrics like the C-index and Integrated Brier Score instead of standard regression metrics.

Does scikit-survival support competing risks analysis for time-to-event modeling?

Competing risks analysis is supported for time-to-event modeling, providing utilities to handle scenarios where multiple distinct event types can preempt the primary event of interest.

How do I handle data preprocessing for Gradient Boosting survival models?

Handling data preprocessing for Gradient Boosting survival models involves using included utilities to structure survival data correctly, ensuring event indicators and time variables meet the required format.

What are the limitations of using machine learning for biostatistics survival modeling?

Machine learning for biostatistics survival modeling requires strict data formatting for censored observations and relies on specific censoring-aware metrics, making it unsuitable for standard classification workflows without structural data conversion.