What the Youden Index measures
Youden's J statistic, introduced by W. J. Youden in his 1950 paper "Index for rating diagnostic tests," condenses a binary diagnostic test into a single number:
J = Sensitivity + Specificity − 1
Sensitivity (the true-positive rate) is the fraction of actual positives the test correctly flags; specificity (the true-negative rate) is the fraction of actual negatives it correctly clears. J adds the two and subtracts 1, so it ranges from −1 to +1. In practice a usable test lands between 0 and 1: J = 0 means the test performs no better than a coin flip, while J = 1 means it is perfect — it catches every case and never raises a false alarm.
Computing J from a 2×2 table
Most tests are summarized in a confusion matrix with four counts: true positives (TP), false negatives (FN), true negatives (TN), and false positives (FP). From those:
- Sensitivity = TP / (TP + FN) — of everyone who truly has the condition, how many tested positive.
- Specificity = TN / (TN + FP) — of everyone who is truly free of the condition, how many tested negative.
- J = Sensitivity + Specificity − 1.
Worked example: with TP = 90, FN = 10, TN = 160, FP = 40, sensitivity = 90/100 = 0.90 and specificity = 160/200 = 0.80, so J = 0.90 + 0.80 − 1 = 0.70.
The ROC connection and the optimal cut point
Plot sensitivity on the y-axis against 1 − specificity on the x-axis and you get an ROC curve. At any single threshold, J is exactly the vertical distance from the ROC point up to the 45° chance diagonal. Because of this, the threshold that maximizes J — the point on the ROC curve farthest above the diagonal — is called the Youden optimal cut point. It is the classifier threshold that treats a missed case and a false alarm as equally costly. If false positives and false negatives carry very different real-world costs, a weighted or cost-based cut point may be preferable to the plain Youden point.
Reading the number
There is no universal cutoff for "good," but common informal bands are: below 0.2 is near chance, 0.2–0.4 weak, 0.4–0.6 moderate, 0.6–0.8 good, and above 0.8 excellent. Always report J alongside the raw sensitivity and specificity, because the same J can come from very different balances — J = 0.6 could be 90%/70% or 80%/80%, and which one you want depends on whether missing a case or a false alarm hurts more.