在R中的roc图上按组添加AUC

时间:2017-12-14 18:45:31

标签: r ggplot2 label roc

我有4组的roc图,我想为图例中的每个组添加auc值:

## draw plots
basicplot <- ggplot(roc_long, aes(d = outcome, m = prediction, color = model)) + geom_roc(n.cuts = 0) + 
+   style_roc(theme = theme_bw, xlab = "1-Specificity", ylab = "Sensitivity") 
## calculate auc
calc_auc(basicplot)
      PANEL group       AUC
    1     1     1 0.7718926
    2     1     2 0.9296029
    3     1     3 0.7790979
    4     1     4 0.8235286

annotate <- basicplot + 
     ggtitle("ROC plots for 4 outcomes") +
     theme(plot.title = element_text(hjust = 0.5)) +
     annotate("text", x = .75, y = .25, label = paste("AUC =", round(calc_auc(basicplot)["AUC"], 3)))

     annotate

我的情节看起来像这样: enter image description here 如何在右侧的每个组中添加AUC?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用round(calc_auc(basicplot)[["AUC"]][1/2/3/4]在calc_auc(basicplot)中提取特定的单元格,然后将其包装在新的句子中。另外,您可能需要\n才能在多行中打断长句子。