Hi,
I have the following data:
Dataex:
ev1 = evaluation1, ev2 = evaluation2, diagnosis = the truth/gold standard (disease yes/no), ev3 = evaluation3
In cases where ev1 != ev2 & ev3==., I want to create a new variable: ev3_sim with the same performance as ev3 (i.e. the same sensitivity and specificity / the same number of true positives, true negativt, etc.)
Any ideas how I can do this?
Thanks,
I have the following data:
Dataex:
Code:
input float(ev1 ev2 diagnosis ev3) 1 1 1 . 0 0 0 0 1 0 1 . 0 1 1 1 0 0 1 . 1 0 0 0
In cases where ev1 != ev2 & ev3==., I want to create a new variable: ev3_sim with the same performance as ev3 (i.e. the same sensitivity and specificity / the same number of true positives, true negativt, etc.)
Any ideas how I can do this?

Thanks,
Comment