Read CSV files into a DataFrame collection Parameters ---------- urlpath : str or list Source path(s). **kwargs : Optional backend kwargs. See Also -------- dask.dataframe.io.csv.read_csv
(urlpath: str | list, **kwargs)
| 135 | |
| 136 | @staticmethod |
| 137 | def read_csv(urlpath: str | list, **kwargs): |
| 138 | """Read CSV files into a DataFrame collection |
| 139 | |
| 140 | Parameters |
| 141 | ---------- |
| 142 | urlpath : str or list |
| 143 | Source path(s). |
| 144 | **kwargs : |
| 145 | Optional backend kwargs. |
| 146 | |
| 147 | See Also |
| 148 | -------- |
| 149 | dask.dataframe.io.csv.read_csv |
| 150 | """ |
| 151 | raise NotImplementedError |
| 152 | |
| 153 | @staticmethod |
| 154 | def read_hdf(pattern: str | list, key: str, **kwargs): |
no outgoing calls