用法:
cudf.read_feather(path, *args, **kwargs)
从文件路径加载一个羽毛对象,返回一个 DataFrame。
- path:string
文件路径
- columns:列表,默认=无
如果不是 None,则只会从文件中读取这些列。
- DataFrame
参数:
返回:
例子:
>>> 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
相关用法
- Python cudf.read_csv用法及代码示例
- Python cudf.read_parquet用法及代码示例
- Python cudf.read_orc用法及代码示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.core.column.string.StringMethods.endswith用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.core.column.string.StringMethods.title用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.DatetimeIndex.dayofweek用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.core.column.string.StringMethods.contains用法及代码示例
- Python cudf.core.column.string.StringMethods.rsplit用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.core.column.string.StringMethods.zfill用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.read_feather。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。