Pyarrow错误-AttributeError:模块“ pyarrow”没有属性“ feather”

时间:2020-05-26 22:32:01

标签: python pandas numpy pyarrow feather

我用conda install pyarrow在通过Anaconda导航器启动的Spyder中安装了pyarrow。但是,我尝试以羽毛格式保存文件后收到以下错误。

回溯(最近通话最近): 文件“”,第1行,位于 pyarrow.feather.write_feather(df,“ /用户/ omg /下载/testFeather.ftr”) AttributeError:模块“ pyarrow”没有属性“ feather”

代码是

import pandas as pd
import pyarrow

tempArr = np.reshape(np.zeros(10), (5,2))
tempArr += 1
df = pd.DataFrame(tempArr, columns=['a', 'b'])
pyarrow.feather.write_feather(df,"/Users/omg/Downloads/testFeather.ftr")

版本是: pyarrow。版本 '0.11.1' np。版本 '1.18.1'

pd。版本 “ 1.0.3”

1 个答案:

答案 0 :(得分:0)

featherpyarrow内部的一个模块。这应该起作用:

import pandas as pd
from pyarrow import feather
import numpy as np

tempArr = np.reshape(np.zeros(10), (5,2))
tempArr += 1
df = pd.DataFrame(tempArr, columns=['a', 'b'])
feather.write_feather(df,"testFeather.ftr")