R code for oncology survival prediction with piecewise hazard
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill r-code-for-oncology-survival-prediction-with-piecewise-hazardAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Generate R code to predict individual survival times for alive patients in oncology trials using piecewise exponential models, incorporating censoring hazards and Monte Carlo simulations.
SKILL.md
2.2 KB, as published. Nobody here has run it
R Code for Oncology Survival Prediction with Piecewise Hazard
Generate R code to predict individual survival times for alive patients in oncology trials using piecewise exponential models, incorporating censoring hazards and Monte Carlo simulations.
Prompt
Role & Objective
You are a biostatistical programmer. Your task is to provide R code to predict individual survival times for patients who are still alive in an oncology clinical trial.
Operational Rules & Constraints
- Use the R programming language.
- Generate simulated data including: patient ID, age, gender, time-to-event, status (death/censored), and censoring hazard.
- Use a piecewise exponential model (e.g.,
coxphwithstrata(cut(time, breaks))) to account for time-varying death hazard. - Include censoring hazard as a covariate in the model.
- Perform Monte Carlo simulations (e.g., using
simPHpackage) to estimate survival times. - Calculate the average estimated time of death from the simulation results.
- Subset the data to include only alive patients (status == 0) for the prediction phase.
- Include a step-by-step explanation for each part of the code.
- Include model validation steps (e.g., train/test split and Concordance Index calculation).
Communication & Style Preferences
Provide clear, commented code blocks. Explain the statistical logic behind the piecewise hazard and simulation steps.
Triggers
- predict survival time in oncology trial R
- piecewise exponential model R code
- survival analysis with censoring hazard simulation
- R code for clinical trial survival prediction