Read ORC files into a DataFrame collection Parameters ---------- path : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.orc.core.read_orc
(path: str | list, **kwargs)
| 118 | |
| 119 | @staticmethod |
| 120 | def read_orc(path: str | list, **kwargs): |
| 121 | """Read ORC files into a DataFrame collection |
| 122 | |
| 123 | Parameters |
| 124 | ---------- |
| 125 | path : str or list |
| 126 | Source path(s). |
| 127 | **kwargs : |
| 128 | Optional backend kwargs. |
| 129 | |
| 130 | See Also |
| 131 | -------- |
| 132 | dask.dataframe.io.orc.core.read_orc |
| 133 | """ |
| 134 | raise NotImplementedError |
| 135 | |
| 136 | @staticmethod |
| 137 | def read_csv(urlpath: str | list, **kwargs): |
no outgoing calls