Read HDF5 files into a DataFrame collection Parameters ---------- pattern : str or list Source path(s). key : str Group identifier in the store. **kwargs : Optional backend kwargs. See Also --------
(pattern: str | list, key: str, **kwargs)
| 152 | |
| 153 | @staticmethod |
| 154 | def read_hdf(pattern: str | list, key: str, **kwargs): |
| 155 | """Read HDF5 files into a DataFrame collection |
| 156 | |
| 157 | Parameters |
| 158 | ---------- |
| 159 | pattern : str or list |
| 160 | Source path(s). |
| 161 | key : str |
| 162 | Group identifier in the store. |
| 163 | **kwargs : |
| 164 | Optional backend kwargs. |
| 165 | |
| 166 | See Also |
| 167 | -------- |
| 168 | dask.dataframe.io.hdf.read_hdf |
| 169 | """ |
| 170 | raise NotImplementedError |
| 171 | |
| 172 | |
| 173 | dataframe_creation_dispatch = CreationDispatch( |
no outgoing calls