+ def add_target(self):
+ self._target = Target(config_file = eval(self._config['TARGET']['config']),
+ start = self._start, end = self._end,
+ timestep = self._timestep)
+
+
+ def add_preprocessing(self):
+ process = Preprocessing(config_file = self._config,
+ dict_features = self.X,
+ dict_target = self.y)
+ print(process.dataframe.head(n=2))
+
+
+