You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the code below, we see that the example ranger survival learner has no output prediction of type lp, while all ROC AUCs measures supported currently need that particular type to be calculated:
Could crank be somehow used in this case instead of lp (setting lp == crank? - maybe doesn't make sense to do that in general though). Maybe consider supporting a more general ROC AUC score (if it exists, a research question :) that requires a relative risk or distribution prediction?
The text was updated successfully, but these errors were encountered:
bblodfon
changed the title
How to get ROC AUCs score for a learner that doesn't support the lp predict type?
How to get ROC AUC score for a learner that doesn't support the lp predict type?
Jun 7, 2022
I love this question because it has an easy answer! They don't exist.
If you look at the documentation in the survAUC package (or any of the papers the code comes from) you'll see they either: 1) expect a linear predictor from a Cox model; or more generally 2) expect a one-to-one relationship between the predicted risk and the survival distribution (which basically translates to requiring a linear predictor).
However time-dependent C-indices exist, and we have an open issue for this here #267
bblodfon
changed the title
How to get ROC AUC score for a learner that doesn't support the lp predict type?
ROC AUC for learners that don't predict lp scores
Jan 26, 2024
Hi!
Based on the code below, we see that the example
ranger
survival learner has no output prediction of typelp
, while all ROC AUCs measures supported currently need that particular type to be calculated:Created on 2022-06-07 by the reprex package (v2.0.1)
Could
crank
be somehow used in this case instead oflp
(settinglp
==crank
? - maybe doesn't make sense to do that in general though). Maybe consider supporting a more general ROC AUC score (if it exists, a research question :) that requires a relative risk or distribution prediction?The text was updated successfully, but these errors were encountered: