AUC.cv.grpsurv | R Documentation |
Calculates the cross-validated AUC (concordance) from a "cv.grpsurv" object.
## S3 method for class 'cv.grpsurv'
AUC(obj, ...)
AUC(obj, ...)
obj |
A |
... |
For S3 method compatibility. |
The area under the curve (AUC), or equivalently, the concordance statistic
(C), is calculated according to the procedure described in van Houwelingen
and Putter (2011). The function calls survival::concordancefit()
, except
cross-validated linear predictors are used to guard against overfitting.
Thus, the values returned by AUC.cv.grpsurv()
will be lower than those you
would obtain with concordancefit()
if you fit the full (unpenalized) model.
van Houwelingen H, Putter H (2011). Dynamic Prediction in Clinical Survival Analysis. CRC Press.
cv.grpsurv()
, survival::survConcordance()
data(Lung)
X <- Lung$X
y <- Lung$y
group <- Lung$group
cvfit <- cv.grpsurv(X, y, group, returnY=TRUE)
head(AUC(cvfit))
ll <- log(cvfit$fit$lambda)
plot(ll, AUC(cvfit), xlim=rev(range(ll)), lwd=3, type='l',
xlab=expression(log(lambda)), ylab='AUC', las=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.