From 8f7d52fc013e3f3ec85636284f6876ad0ccfeebe Mon Sep 17 00:00:00 2001 From: Haoyin Xu Date: Tue, 17 Oct 2023 11:59:39 -0400 Subject: [PATCH] FIX add max_fpr argument to auc example --- examples/hypothesis_testing/plot_might_auc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/hypothesis_testing/plot_might_auc.py b/examples/hypothesis_testing/plot_might_auc.py index 101ad5b7f..fd032972a 100644 --- a/examples/hypothesis_testing/plot_might_auc.py +++ b/examples/hypothesis_testing/plot_might_auc.py @@ -94,6 +94,7 @@ y, metric=metric, return_posteriors=True, + max_fpr=max_fpr, ) print(f"ASH-90 / Partial AUC: {stat}") @@ -110,6 +111,7 @@ y, metric=metric, return_posteriors=True, + max_fpr=max_fpr, ) print(f"ASH-90 / Partial AUC: {stat}")