I have plotted the ROC curve of two models and I would like to have the AUC confidence internal as a band. Any idea? The code I use is:
library(pRoc)
roc(test_df$extry, y, plot=TRUE, legacy.axes=TRUE, percent=TRUE, xlab="False Positive Percentage", ylab="True Postive Percentage", col="#377eb8", lwd=4,print.auc=TRUE)
plot.roc(test_df$extry, rf.model$votes[,1], percent=TRUE, col="#4daf4a", lwd=4, print.auc=TRUE, add=TRUE, print.auc.y=40)