How do I predict survival curves using xgboost?
The xgboost package enables survival modeling using parameter arguments: objective = "survival:cox" and eval_metric = "cox-nloglik".
The predict method for the resulting model only outputs risk scores (same as type = "risk"
in the survival::coxph
function in r).
How do I use xgboost to predict entire survival curves?
Topic xgboost survival-analysis
Category Data Science