From c8c2ff7eab4a017e105d2245d61fb3a96fb7d569 Mon Sep 17 00:00:00 2001 From: bikegeek Date: Fri, 23 Dec 2022 18:04:22 -0700 Subject: [PATCH] Issue #296 Didn't remove one of the replaced lines in the PCT linetype code block --- metplotpy/plots/roc_diagram/roc_diagram_series.py | 1 - 1 file changed, 1 deletion(-) diff --git a/metplotpy/plots/roc_diagram/roc_diagram_series.py b/metplotpy/plots/roc_diagram/roc_diagram_series.py index 7f8f1590..23638f48 100644 --- a/metplotpy/plots/roc_diagram/roc_diagram_series.py +++ b/metplotpy/plots/roc_diagram/roc_diagram_series.py @@ -88,7 +88,6 @@ def _create_series_points(self): elif self.config.linetype_pct: roc_df = pstats._calc_pct_roc(subset_df) pody = roc_df['pody'] - pody = pd.Series([1]).append(pody, ignore_index=True) pody = pd.concat([pd.Series([1]), pody], ignore_index=True) pody = pd.concat([pody, pd.Series([0])]) pofd = roc_df['pofd']