當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。