Hi,
I appreciate anyone who can help me with this problem. I am trying to combine two ROC curves into the same graph. I am trying to validate the definition of a failed procedure using two different published definitions. I didn't include data ex since it is just 0's and 1's.
Variables:
Failed_gs: gold standard definition for failed procedure, coded 0,1
C: new definition #1 for failed procedure, coded 0,1
i: new definition #2 for failed procedure, coded 0,1
Does anyone have any guidance on how I can combine these two ROC curves into one graph? Thank you
I appreciate anyone who can help me with this problem. I am trying to combine two ROC curves into the same graph. I am trying to validate the definition of a failed procedure using two different published definitions. I didn't include data ex since it is just 0's and 1's.
Variables:
Failed_gs: gold standard definition for failed procedure, coded 0,1
C: new definition #1 for failed procedure, coded 0,1
i: new definition #2 for failed procedure, coded 0,1
Does anyone have any guidance on how I can combine these two ROC curves into one graph? Thank you
Code:
roctab failed_gs c, detail Detailed report of sensitivity and specificity ------------------------------------------------------------------------------ Correctly Cutpoint Sensitivity Specificity Classified LR+ LR- ------------------------------------------------------------------------------ ( >= 0 ) 100.00% 0.00% 83.61% 1.0000 ( >= 1 ) 69.61% 85.00% 72.13% 4.6405 0.3576 ( > 1 ) 0.00% 100.00% 16.39% 1.0000 ------------------------------------------------------------------------------ ROC -Asymptotic Normal-- Obs Area Std. Err. [95% Conf. Interval] ------------------------------------------------------------ 122 0.7730 0.0469 0.68108 0.86500 roctab failed_gs c, table graph summary roctab failed_gs i, detail Detailed report of sensitivity and specificity ------------------------------------------------------------------------------ Correctly Cutpoint Sensitivity Specificity Classified LR+ LR- ------------------------------------------------------------------------------ ( >= 0 ) 100.00% 0.00% 83.19% 1.0000 ( >= 1 ) 94.95% 60.00% 89.08% 2.3737 0.0842 ( > 1 ) 0.00% 100.00% 16.81% 1.0000 ------------------------------------------------------------------------------ ROC -Asymptotic Normal-- Obs Area Std. Err. [95% Conf. Interval] ------------------------------------------------------------ 119 0.7747 0.0573 0.66249 0.88700 roctab failed_gs i, detail
Comment