tsteuer hace 5 años
padre
commit
3937943c61

+ 0 - 3
cdplib/feature_engineering/StatisticalFeatures.py

@@ -51,9 +51,6 @@ class StatisticalFeatures:
             if data[col].isnull().any():
                 self.logger.warning('Index column ' + str(col) + ' contains missing values, no features for those will be returned')
         
-    def say_name(self,name):
-        print(name)
-        
     def get_kpis_by_aggregation(self, kpis):
         '''
         Aggregates given fields with given aggregation functions

+ 12 - 0
cdplib/feature_engineering/Test.py

@@ -0,0 +1,12 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+"""
+Created on Mon Oct  7 09:59:23 2019
+
+@author: thorstensteuer
+"""
+
+class Test:
+    
+    def say_name(self,name):
+        print("Hallo"+name)