cudf.read_feather#

cudf.read_feather(path, *args, **kwargs)#

Load an feather object from the file path, returning a DataFrame.

Parameters:
pathstring

File path

columnslist, default=None

If not None, only these columns will be read from the file.

Returns:
DataFrame

Examples

>>> import cudf
>>> df = cudf.read_feather(filename)
>>> df
  num1                datetime text
0  123 2018-11-13T12:00:00.000 5451
1  456 2018-11-14T12:35:01.000 5784
2  789 2018-11-15T18:02:59.000 6117