From 04b28e2b2d9cc982d39021d46d9d4dd9d1df3434 Mon Sep 17 00:00:00 2001
From: leufen1 <l.leufen@fz-juelich.de>
Date: Mon, 2 Nov 2020 16:45:20 +0100
Subject: [PATCH] debug plot statement is now a comment

---
 mlair/data_handler/data_handler_kz_filter.py | 5 +++--
 mlair/run_modules/pre_processing.py          | 3 ---
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/mlair/data_handler/data_handler_kz_filter.py b/mlair/data_handler/data_handler_kz_filter.py
index 943f3af3..0798b11a 100644
--- a/mlair/data_handler/data_handler_kz_filter.py
+++ b/mlair/data_handler/data_handler_kz_filter.py
@@ -42,10 +42,11 @@ class DataHandlerKzFilterSingleStation(DataHandlerSingleStation):
         import matplotlib.pyplot as plt
         # self.original_data = self.data  # ToDo: implement here something to store unfiltered data
         self.apply_kz_filter()
-        self.data.sel(filter="74d", variables="temp", Stations="DEBW107").plot()
+        # self.data.sel(filter="74d", variables="temp", Stations="DEBW107").plot()
+        # self.data.sel(variables="temp", Stations="DEBW107").plot.line(hue="filter")
         if self.transformation is not None:
             self.call_transform()
-        self.make_samples()  # ToDo: target samples are still comming from filtered data
+        self.make_samples()  # ToDo: target samples are still coming from filtered data
 
     @TimeTrackingWrapper
     def apply_kz_filter(self):
diff --git a/mlair/run_modules/pre_processing.py b/mlair/run_modules/pre_processing.py
index 9b8ebbb2..82af9cf0 100644
--- a/mlair/run_modules/pre_processing.py
+++ b/mlair/run_modules/pre_processing.py
@@ -230,6 +230,3 @@ class PreProcessing(RunEnvironment):
             transformation_dict = data_handler.transformation(stations, **kwargs)
             if transformation_dict is not None:
                 self.data_store.set("transformation", transformation_dict)
-
-
-
-- 
GitLab