Hello, can we overlay a graph produced by roccomp and twoway? I have the following graphs, and I would like the points on the two-way scatter plot to appear on the ROC curve graph. Here are the codes and the respective graphs produced: Please also note the numbering on the x and y axes of both graphs and the size of the graphs, which I think need to be the same for the overlaying to be correct and accurate.



Code:
roccomp xpert_result1 cad4tb7_2 qxr_v4 infv_2, summary graph
Code:
twoway (scatter tpr fpr, ///
msymbol(circle triangle square diamond x +) ///
mlabel(reader_id) mlabpos(12) ///
legend(off) ///
xtitle("False Positive Rate (1 – Specificity)") ///
ytitle("True Positive Rate (Sensitivity)") ///
title("Expert Reader Overlay") ///
xlabel(0(.1)1) ylabel(0(.1)1)), ///
name(expert_overlay, replace)

Comment