(df: pd.DataFrame, calendar_list: List[pd.Timestamp])
| 240 | |
| 241 | @staticmethod |
| 242 | def get_datetime_index(df: pd.DataFrame, calendar_list: List[pd.Timestamp]) -> int: |
| 243 | return calendar_list.index(df.index.min()) |
| 244 | |
| 245 | def _data_to_bin(self, df: pd.DataFrame, calendar_list: List[pd.Timestamp], features_dir: Path): |
| 246 | if df.empty: |