I have a dataset that measures cancer (d), PSA level (psa), and test positive/negative (tp). A PSA>4 correlates to a positive test result, and all other PSA values correlate to a negative test result. cancer (d) is a binary qualitative variable, either yes or no.
I am wondering how to calculate diagnostic test accuracy measures to fill out this table
TP=true positive
FP=false positive
FN=false negative
TN=true negative
I am wondering how to calculate diagnostic test accuracy measures to fill out this table
criterion standard | criterion standard | |||
Abnormal | Normal | Total | ||
test result | Positive (PSA>4) | TP | FP | T+ |
test result | Negative (PSA<4) | FN | TN | T- |
total | D+ | D- | n |
FP=false positive
FN=false negative
TN=true negative
Comment