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


我的情节看起来像这样:
r - 在R中的roc图上按组添加AUC-LMLPHP
如何在右侧的每个组中添加AUC?

谢谢!

最佳答案

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

08-19 22:03