DelongResult

Note

This page is a reference documentation. It only explains the class signature, and not how to use it. Please refer to the Habitat Guide and Python API guide (v2.0) for usage.

class DelongResult(auc_a: float, auc_b: float, p_value: float)[source]

Bases: object

Outcome of a paired DeLong AUC comparison.

auc_a: float

AUC of the first model’s scores.

auc_b: float

AUC of the second model’s scores.

p_value: float

Two-sided p-value of the hypothesis that the AUCs differ.

__init__(auc_a: float, auc_b: float, p_value: float) → None