(self, split)
| 5 | |
| 6 | class DataProcessing: |
| 7 | def __init__(self, split): |
| 8 | self.split = split |
| 9 | |
| 10 | def make_features(self, file_path, window, csv_path, make_y=True, verbose=True, save_csv=False): |
| 11 | df = pd.read_csv(f"{file_path}", index_col=0) |
nothing calls this directly
no outgoing calls
no test coverage detected