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