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

问题描述 投票:4回答:1

我有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?

谢谢!

r ggplot2 label roc
1个回答
0
投票

您可以使用round(calc_auc(basicplot)[["AUC"]][1/2/3/4]提取calc_auc(basicplot)中的特定单元格,并将它们包装在一个新句子中。你也可能需要\n打破几个新行的长句。

© www.soinside.com 2019 - 2024. All rights reserved.