I have a list of elements of the class "roc" (l_rocs) which I want to plot with ggroc from the package pROC
library("ggplot2")
library("pROC")
#inside a bigger loop
l_rocs[[names[[i]]]] <- roc(predictor=gbm.probs$Yes,
response=testing$Attrition,
levels=levels(testing$Attrition))
#loop end
ggroc(l_rocs) +
labs(color='Sampling Method'))
I now want to add the AUC for each curve. The best would be right inside the legend but I can not find a way to do it as the given element is a list.
Any advice?
Here is a solution using modified legend labels
I used some example data since no data for a reproducible example was added.
If you have multiple ROC curves it might be better to draw a facet plot
Created on 2021-09-30 by the reprex package (v2.0.1)