I'm trying to combine multiple ROC value into one graph, so far I already managed to do that. However, I'm having a hard time changing the legend.
roc.list <- list(roc_obj,roc_objL,roc_objR)
ggroc(roc.list, aes = c("linetype"),legacy.axes = TRUE) +
labs(x = "1 - Specificity", y = "Sensitivity") + theme_classic() +geom_abline()
I can't manage to change the "main" and "1", "2", "3".
I tried adding the
labs(x = "1 - Specificity", y = "Sensitivity", fill = c("Mean Gonial", "Gonial Angle Left","Gonial Angle Right")) + theme_classic() +geom_abline()
I expect the output image legend main title to be "Gonial Angle Measurement" and "Mean Gonial Angle", "Gonial Angle Left", "Gonial Angle Right" to 1, 2, and 3 legends, respectively.
Thank you