skills/scikit-survival/SKILL.md
Use this skill for scikit-survival 0.28.0 workflows involving:
scikit-survival primarily models right-censored outcomes. Its built-in competing-risk support is nonparametric cumulative incidence; it does not provide Fine-Gray regression. Do not present model output as clinical advice, causal evidence, or proof of clinical utility.
Verified 2026-07-23:
criterion from GradientBoostingSurvivalAnalysis.Create an isolated environment and install the tested snapshot:
uv venv --python 3.11
source .venv/bin/activate
uv pip install \
"scikit-survival==0.28.0" \
"scikit-learn==1.9.0" \
"numpy==2.4.6" \
"pandas==3.0.5" \
"scipy==1.17.1" \
"ecos==2.0.14" \
"osqp==1.1.3" \
"joblib==1.5.3" \
"numexpr==2.14.2" \
"narwhals==2.24.0"
Binary wheels are preferred. A source build requires a C/C++ compiler; OSQP may also require CMake. This skill is MIT-licensed; the upstream scikit-survival package is GPL-3.0-or-later, so review upstream licensing before redistribution.
survival_train, never a pooled train+test outcome.(n_test, n_times), not risk scores or unevaluated step functions.1 - Kaplan-Meier while censoring competing events.from sksurv.util import Surv
y = Surv.from_arrays(event=event_bool, time=observed_time)
# Equivalent for pandas or Polars:
y = Surv.from_dataframe("event", "time", frame)
The first field is boolean (True=event, False=right-censored); the second is
floating-point time. Field names may vary, but field order and meaning may not.
Use references/data-handling.md before loading custom or competing-risk data.
from sklearn.compose import ColumnTransformer
from sklearn.impute import SimpleImputer
from sklearn.model_selection import train_test_split
from sklearn.pipeline import make_pipeline
from sklearn.preprocessing import OneHotEncoder, StandardScaler
from sksurv.linear_model import CoxPHSurvivalAnalysis
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.25, stratify=y["event"], random_state=20260723
)
preprocess = ColumnTransformer(
[
("num", make_pipeline(SimpleImputer(strategy="median"), StandardScaler()), numeric),
(
"cat",
make_pipeline(
SimpleImputer(strategy="most_frequent"),
OneHotEncoder(handle_unknown="ignore", drop="first", sparse_output=False),
),
categorical,
),
],
sparse_threshold=0.0,
)
model = make_pipeline(preprocess, CoxPHSurvivalAnalysis(alpha=0.1, ties="efron"))
model.fit(X_train, y_train)
risk = model.predict(X_test)
The split precedes every learned transformation. For repeated or grouped records, use a group-aware split; for temporal deployment, use a time-respecting split.
CoxPHSurvivalAnalysis: interpretable log-hazard coefficients under proportional
hazards; alpha is ridge shrinkage and ties is "breslow" or "efron".CoxnetSurvivalAnalysis: LASSO/elastic-net path for high-dimensional data.
l1_ratio is in (0, 1]; use fit_baseline_model=True before requesting
survival or cumulative-hazard functions.IPCRidge: IPC-weighted ridge AFT model; prediction is on a time/log-time scale,
not a Cox risk score.RandomSurvivalForest / ExtraSurvivalTrees: nonlinear survival and cumulative
hazard predictions; use permutation importance, not impurity importance.GradientBoostingSurvivalAnalysis: tree boosting with "coxph", "squared",
or "ipcwls" loss. criterion was removed in 0.28.ComponentwiseGradientBoostingSurvivalAnalysis: sparse linear componentwise
boosting.FastSurvivalSVM / FastKernelSurvivalSVM: ranking or regression objectives.
Only rank_ratio=1 directly returns higher-is-riskier scores; SVMs do not yield
survival probabilities for Brier metrics.Read the model-specific reference before interpreting coefficients or predictions:
references/cox-models.md, references/ensemble-models.md, or
references/svm-models.md.
import numpy as np
from sksurv.metrics import (
brier_score,
concordance_index_ipcw,
cumulative_dynamic_auc,
integrated_brier_score,
)
risk = model.predict(X_test) # (n_test,), higher means higher event risk
uno_c = concordance_index_ipcw(y_train, y_test, risk, tau=times[-1])[0]
auc_t, mean_auc = cumulative_dynamic_auc(y_train, y_test, risk, times)
surv_fns = model.predict_survival_function(X_test)
surv_prob = np.vstack([fn(times) for fn in surv_fns]) # (n_test, n_times)
_, brier_t = brier_score(y_train, y_test, surv_prob, times)
ibs = integrated_brier_score(y_train, y_test, surv_prob, times)
See references/evaluation-metrics.md for assumptions, primary literature, safe
time-grid construction, and scorer wrappers.
Ordinary Pipeline.fit(X, y) needs no metadata-routing setup. Metric wrappers such
as as_concordance_index_ipcw_scorer are estimator wrappers, not scoring=
callables:
from sklearn.model_selection import GridSearchCV
from sksurv.metrics import as_concordance_index_ipcw_scorer
wrapped = as_concordance_index_ipcw_scorer(model, tau=tau)
search = GridSearchCV(
wrapped,
{"estimator__coxphsurvivalanalysis__alpha": [0.01, 0.1, 1.0]},
cv=inner_splits,
)
The wrapper learns the censoring distribution from each fit fold. Prefix wrapped
parameters with estimator__. Enable scikit-learn metadata routing only when
passing extra metadata through a meta-estimator. For example, Coxnet's
set_predict_request(alpha=True) matters only when routing the alpha prediction
argument with sklearn.set_config(enable_metadata_routing=True).
Use an outer CV loop for an unbiased CV performance estimate after inner tuning. Do not select parameters and report performance from the same folds as if external.
from sksurv.nonparametric import cumulative_incidence_competing_risks
# status: integer array, 0=censored, 1..K=mutually exclusive causes
time, cif = cumulative_incidence_competing_risks(status, observed_time)
total_cif = cif[0]
cause_1_cif = cif[1]
cif has shape (K + 1, n_times); row 0 is total risk and rows 1..K are
cause-specific cumulative incidence. Cause-specific Cox models treat other causes
as censored to estimate cause-specific hazards, but one such model's
1 - survival is not the cause-specific CIF. See references/competing-risks.md.
All helpers use deterministic synthetic data when no input is given. They make no network calls, reject URLs and symlinks, bound files/rows/features, avoid unsafe pickle loading, and lazily import scientific packages.
python skills/scikit-survival/scripts/validate_survival_csv.py --help
python skills/scikit-survival/scripts/train_survival_model.py --help
python skills/scikit-survival/scripts/evaluate_survival_metrics.py --help
python skills/scikit-survival/scripts/competing_risk_cif.py --help
python skills/scikit-survival/scripts/model_report.py --help
Typical local flow:
python skills/scikit-survival/scripts/validate_survival_csv.py \
--input data.csv --event-column event --time-column time \
--feature-columns age,group,measurement --structured-output outcome.npy
python skills/scikit-survival/scripts/train_survival_model.py \
--input data.csv --event-column event --time-column time \
--numeric-columns age,measurement --categorical-columns group \
--model coxph --tune --prediction-output predictions.npz \
--output training-summary.json
python skills/scikit-survival/scripts/evaluate_survival_metrics.py \
--input predictions.npz --output metrics-summary.json
python skills/scikit-survival/scripts/model_report.py \
--training-summary training-summary.json \
--metrics-summary metrics-summary.json --output model-report.md
Use only de-identified, authorized local data. The bundled tests contain synthetic records only and no patient data or PHI.
SECURITY.md previously claimed this skill bundled package-shadowing files named
sklearn.py and sksurv.py. The 2026-07-23 inventory confirmed those files did
not exist; the claim was a phantom analyzer finding. This refresh adds only
descriptively named helpers and no shadow modules, environment reads, or network
calls.
Never name a project script after an imported package (including sklearn.py,
sksurv.py, numpy.py, or pandas.py), because Python may import the local file
instead of the installed library. Inspect the working directory before executing
examples copied from untrusted sources.
references/data-handling.md — structured arrays, datasets, schema validation,
pandas/Polars preprocessing, and leakage-safe splitting.references/cox-models.md — Cox PH, Coxnet, IPCRidge, assumptions, and tuning.references/ensemble-models.md — forests, trees, boosting, predictions, and
permutation importance.references/svm-models.md — SVM objectives, prediction direction, scaling,
kernels, and limitations.references/evaluation-metrics.md — metric inputs, censoring assumptions,
time grids, calibration, nested CV, and primary literature.references/competing-risks.md — integer event coding, CIF API, built-in
datasets, cause-specific hazards, and unsupported Fine-Gray regression.Official API and compatibility sources, checked 2026-07-23: