fit and process data The input of the `fit` will be the output of the previous processor
(self)
| 520 | proc.fit(self._data) |
| 521 | |
| 522 | def fit_process_data(self): |
| 523 | """ |
| 524 | fit and process data |
| 525 | |
| 526 | The input of the `fit` will be the output of the previous processor |
| 527 | """ |
| 528 | self.process_data(with_fit=True) |
| 529 | |
| 530 | @staticmethod |
| 531 | def _run_proc_l( |
no test coverage detected