viz.renderers.CurvePoint
export interface CurvePoint {
/** X-coordinate (FPR for ROC, Recall for PR) */
x: number;
/** Y-coordinate (TPR for ROC, Precision for PR) */
y: number;
/** Threshold at this point */
threshold: number;
}x(number)- – X-coordinate (FPR for ROC, Recall for PR)
y(number)- – Y-coordinate (TPR for ROC, Precision for PR)
threshold(number)- – Threshold at this point
Point on a curve.