computeROCandAUC

Compute ROC curve and AUC. Returns the AUC

double
computeROCandAUC
(
R
)
(,
out Tuple!(float, float)[] roc_curve
,
ulong num_cutoff = 400
)
if (
isForwardRange!R
)

Parameters

data R

forward range of (true label, prediction)

roc_curve Tuple!(float, float)[]

will populate the ROC curve in this array

num_cutoff ulong

number of points in the ROC curve

Meta