当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cuxfilter.dataframe.DataFrame.from_arrow用法及代码示例


用法:

classmethod from_arrow(dataframe_location)

从磁盘读取箭头文件作为 cuxfilter.DataFrame

参数

dataframe_location: str or arrow in-memory table

返回

cuxfilter.DataFrame 对象

例子

从磁盘读取数据帧作为箭头文件

>>> import cuxfilter
>>> import pyarrow as pa
>>> # create a temporary arrow table
>>> arrowTable = pa.Table.from_arrays([['foo', 'bar']], names=['name'])
>>> # read arrow table, can also ready .arrow file paths directly
>>> cux_df = cuxfilter.DataFrame.from_arrow(df)

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cuxfilter.dataframe.DataFrame.from_arrow。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。