to_pandas() 得到了意外的关键字参数
to_pandas() got an unexpected keyword argument
我正在尝试将 parquet table 转换为 pandas 数据框,并根据文档 (enter link description here) 避免内存加倍,我使用了以下代码;
df = table.to_pandas(split_blocks=True, self_destruct=True)
但我收到以下错误;
TypeError: to_pandas() got an unexpected keyword argument 'split_blocks'
现在我安装了 pyarrow 0.15.1 版本。当我 运行 代码 Conda update pyarrow
时,我收到消息 required packages are installed
。
请问如何解决这个错误。提前致谢。
版本 0.15.1 支持的选项少于最新版本。您可以看到选项 here。如果你担心内存可以尝试通过 zero_copy=True
.
我不是conda专家,但是你试过了吗conda install pyarrow=1.0.1
我正在尝试将 parquet table 转换为 pandas 数据框,并根据文档 (enter link description here) 避免内存加倍,我使用了以下代码;
df = table.to_pandas(split_blocks=True, self_destruct=True)
但我收到以下错误;
TypeError: to_pandas() got an unexpected keyword argument 'split_blocks'
现在我安装了 pyarrow 0.15.1 版本。当我 运行 代码 Conda update pyarrow
时,我收到消息 required packages are installed
。
请问如何解决这个错误。提前致谢。
版本 0.15.1 支持的选项少于最新版本。您可以看到选项 here。如果你担心内存可以尝试通过 zero_copy=True
.
我不是conda专家,但是你试过了吗conda install pyarrow=1.0.1