stat: bring ROC doc comment into line with logic inversion

This was missed in 50ee437.
This commit is contained in:
Dan Kortschak
2021-02-23 19:07:11 +10:30
parent aeb04daafe
commit 42babc578e

View File

@@ -21,8 +21,8 @@ import (
// sort y together with classes and weights. // sort y together with classes and weights.
// //
// For a given cutoff value, observations corresponding to entries in y // For a given cutoff value, observations corresponding to entries in y
// greater than the cutoff value are classified as false, while those // greater than the cutoff value are classified as true, while those
// less than or equal to the cutoff value are classified as true. These // less than or equal to the cutoff value are classified as false. These
// assigned class labels are compared with the true values in the classes // assigned class labels are compared with the true values in the classes
// slice and used to calculate the FPR and TPR. // slice and used to calculate the FPR and TPR.
// //