Skip to content

Commit

Permalink
Issue #296 Didn't remove one of the replaced lines in the PCT linetyp…
Browse files Browse the repository at this point in the history
…e code block
  • Loading branch information
bikegeek committed Dec 24, 2022
1 parent bfd42a6 commit c8c2ff7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion metplotpy/plots/roc_diagram/roc_diagram_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit c8c2ff7

Please sign in to comment.