From fd305374cd3aa44f95c4b493111a3f9463300e81 Mon Sep 17 00:00:00 2001 From: Maternus <17703667+turnmanh@users.noreply.github.com> Date: Fri, 18 Oct 2024 11:41:52 +0200 Subject: [PATCH] Correted typo in y-axis label (#1296) --- sbi/analysis/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbi/analysis/plot.py b/sbi/analysis/plot.py index 9822fe590..5825e3386 100644 --- a/sbi/analysis/plot.py +++ b/sbi/analysis/plot.py @@ -2152,7 +2152,7 @@ def plot_tarp( ax.plot(alpha, ecp, color="blue", label="TARP") ax.plot(alpha, alpha, color="black", linestyle="--", label="ideal") ax.set_xlabel(r"Credibility Level $\alpha$") - ax.set_ylabel(r"Expected Coverage Probility") + ax.set_ylabel(r"Expected Coverage Probability") ax.set_xlim(0.0, 1.0) ax.set_ylim(0.0, 1.0) ax.set_title(title or "")