Classification: ROC and AUC

The previous section presented a set of model metrics, all calculated at asingle classification threshold value. But if you want to evaluate amodel's quality across all possible thresholds, you need different tools.

Receiver-operating characteristic curve (ROC)

TheROC curveis a visual representation of model performance across all thresholds.The long version of the name, receiver operating characteristic, is a holdoverfrom WWII radar detection.

The ROC curve is drawn by calculating the true positive rate (TPR)and false positive rate (FPR) at every possible threshold (in practice, atselected intervals), then graphing TPR over FPR. A perfect model,which at some threshold has a TPR of 1.0 and a FPR of 0.0, canbe represented by either a point at(0, 1) if all other thresholds are ignored, or by the following:

Figure 1. A graph of TPR (y-axis) against FPR (x-axis) showing the            performance of a perfect model: a line from (0,1) to (1,1).
Figure 1. ROC and AUC of a hypothetical perfect model.

Area under the curve (AUC)

Thearea under the ROC curve (AUC)represents the probability that the model,if given a randomly chosen positive and negative example, will rank thepositive higher than the negative.

The perfect model above, containing a square with sides of length 1, has anarea under the curve (AUC) of 1.0. This means there is a 100% probability thatthe model will correctly rank a randomly chosen positive example higher than arandomly chosen negative example. In other words, looking at the spread ofdata points below, AUC gives the probability that the model will place arandomly chosen square to the right of a randomly chosen circle, independent ofwhere the threshold is set.

Figure 2. Visualization of a classifier with AUC = 1.0, where all positive examples are ranked to the right of negative examples.
Figure 2. A spread of predictions for a binary classification model. AUC is the chance a randomly chosen square is positioned to the right of a randomly chosen circle.

In more concrete terms, a spam classifier with AUCof 1.0 always assigns a random spam email a higher probability of beingspam than a random legitimate email. The actual classification of eachemail depends on the threshold that you choose.

For a binary classifier, a model that does exactly as well as random guesses orcoin flips has a ROC that is a diagonal line from (0,0) to (1,1). The AUC is0.5, representing a 50% probability of correctly ranking a random positive andnegative example.

In the spam classifier example, a spam classifier with AUC of 0.5 assignsa random spam email a higher probability of being spam than a randomlegitimate email only half the time.

Figure 3. A graph of TPR (y-axis) against FPR (x-axis) showing the            performance of a random 50-50 guesser: a diagonal line from (0,0)            to (1,1).
Figure 3. ROC and AUC of completely random guesses.

(Optional, advanced) Precision-recall curve

AUC and ROC work well for comparing models when the dataset is roughly balanced between classes. When the dataset is imbalanced, precision-recall curves (PRCs) and the area under those curves may offer a better comparative visualization of model performance. Precision-recall curves are created by plotting precision on the y-axis and recall on the x-axis across all thresholds.

Precision-recall curve example with downward convex curve from (0,1)            to (1,0)

AUC and ROC for choosing model and threshold

AUC is a useful measure for comparing the performance of two different models,as long as the dataset is roughly balanced. The model with greater area underthe curve is generally the better one.

Figure 4.a. ROC/AUC graph of a model with AUC=0.65.Figure 4.b. ROC/AUC graph of a model with AUC=0.93.
Figure 4. ROC and AUC of two hypothetical models. The curve on the right, with a greater AUC, represents the better of the two models.

The points on a ROC curve closest to (0,1) represent a range of thebest-performing thresholds for the given model. As discussed in theThresholds,Confusion matrixandChoice of metric and tradeoffssections, the threshold you choose depends on which metric is most important tothe specific use case. Consider the points A, B, and C in the followingdiagram, each representing a threshold:

Figure 5. A ROC curve of AUC=0.84 showing three points on the            convex part of the curve closest to (0,1) labeled A, B, C in order.
Figure 5. Three labeled points representing thresholds.

If false positives (false alarms) are highly costly, it may make sense tochoose a threshold that gives a lower FPR, like the one at point A, even if TPRis reduced. Conversely, if false positives are cheap and false negatives(missed true positives) highly costly, the threshold for point C, whichmaximizes TPR, may be preferable. If the costs are roughly equivalent, point Bmay offer the best balance between TPR and FPR.

Here is the ROC curve for the data we have seen before:

Exercise: Check your understanding

In practice, ROC curves are much less regular than the illustrations given above. Which of the following models, represented by their ROC curve and AUC, has the best performance?
ROC curve that arcs upward and then rightward from (0,0) to           (1,1). The curve has an AUC of 0.77.
This model has the highest AUC, which corresponds with the best performance.
ROC curve that is approximately a straight line from (0,0) to           (1,1), with a few zig-zags. The curve has an AUC of 0.508.
ROC curve that zig-zags up and to the right from (0,0) to (1,1).           The curve has an AUC of 0.623.
ROC curve that arcs rightward and then upward from                (0,0) to (1,1). The curve has an AUC of 0.31.
Which of the following models performs worse than chance?
ROC curve that arcs rightward and then upward from                (0,0) to (1,1). The curve has an AUC of 0.32.
This model has an AUC lower than 0.5, which means it performs worse than chance.
ROC curve that is approximately a straight line from                     (0,0) to (1,1), with a few zig-zags. The curve has an                     AUC of 0.508.
This model performs slightly better than chance.
ROC curve that is a diagonal straight line from                (0,0) to (1,1). The curve has an AUC of 0.5.
This model performs the same as chance.
ROC curve that is composed of two perpendicular lines: a vertical      line from (0,0) to (0,1) and a horizontal line from (0,1) to (1,1).      This curve has an AUC of 1.0.
This is a hypothetical perfect classifier.

(Optional, advanced) Bonus question

Which of the following changes can be made to the worse-than-chance model in the previous question to cause it to perform better than chance?
Reverse the predictions, so predictions of1 become0, and predictions of0 become1.
If a binary classifier reliably puts examples in the wrong classes more often than chance, switching the class label immediately makes its predictions better than chance without having to retrain the model.
Have it always predict the negative class.
This may or may not improve performance above chance. Also, as discussed in theAccuracy section, this isn't a useful model.
Have it always predict the positive class.
This may or may not improve performance above chance. Also, as discussed in theAccuracy section, this isn't a useful model.

Imagine a situation where it's better to allow some spam to reach the inbox than to send a business-critical email to the spam folder. You've trained a spam classifier for this situation where the positive class is spam and the negative class is not-spam. Which of the following points on the ROC curve for your classifier is preferable?

A ROC curve of AUC=0.84 showing three points on the convex part of       the curve that are close to (0,1). Point A is at approximately       (0.25, 0.75). Point B is at approximately (0.30, 0.90), and is       the point that maximizes TPR while minimizing FPR. Point       C is at approximately (0.4, 0.95).
Point A
In this use case, it's better to minimize false positives, even if true positives also decrease.
Point B
This threshold balances true and false positives.
Point C
This threshold maximizes true positives (flags more spam) at a cost of more false positives (more legitimate emails flagged as spam).
Key terms:

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2026-01-12 UTC.