From 3e6397d0b1a516a5caf0bd315c9498dc8a101363 Mon Sep 17 00:00:00 2001
From: "v.gramlich1" <v.gramlichfz-juelich.de>
Date: Tue, 31 Aug 2021 17:30:54 +0200
Subject: [PATCH] Fixed an error in postprocessing_plotting.py

---
 mlair/plotting/postprocessing_plotting.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mlair/plotting/postprocessing_plotting.py b/mlair/plotting/postprocessing_plotting.py
index 2c8fd6e4..a4bd68fc 100644
--- a/mlair/plotting/postprocessing_plotting.py
+++ b/mlair/plotting/postprocessing_plotting.py
@@ -165,10 +165,10 @@ class PlotContingency(AbstractPlotClass):
             for threshold in range(self._min_threshold, self._max_threshold):
                 for pred in predictions:
                     ta, fa, fb, tb = self._single_contingency(obs, pred, threshold)
-                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="ta", type=pred.type.values)] = ta + 1
-                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="fa", type=pred.type.values)] = fa + 1
-                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="fb", type=pred.type.values)] = fb + 1
-                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="tb", type=pred.type.values)] = tb + 1
+                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="ta", type=pred.type.values)] = contingency_array.loc[dict(thresholds=threshold, contingency_cell="ta", type=pred.type.values)] + ta
+                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="fa", type=pred.type.values)] = contingency_array.loc[dict(thresholds=threshold, contingency_cell="fa", type=pred.type.values)] + fa
+                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="fb", type=pred.type.values)] = contingency_array.loc[dict(thresholds=threshold, contingency_cell="fb", type=pred.type.values)] + fb
+                    contingency_array.loc[dict(thresholds=threshold, contingency_cell="tb", type=pred.type.values)] = contingency_array.loc[dict(thresholds=threshold, contingency_cell="tb", type=pred.type.values)] + tb
         return contingency_array
 
     def _single_contingency(self, obs, pred, threshold):
-- 
GitLab