python – pandas.read_feather得到一个意外的参数nthreads

我尝试将数据帧保存为羽毛格式,但在加载时我得到了错误

os.makedirs('tmp', exist_ok=True)
df_hist.to_feather('tmp/historical-raw')

这是加载回数据集

df_hist= pd.read_feather('tmp/historical-raw')

这给出了以下错误

read_feather() got an unexpected keyword argument 'nthreads'

提前致谢

最佳答案 尝试替换下面的行

df_hist= pd.read_feather('tmp/historical-raw') 

import feather
df_hist=feather.read_dataframe('tmp/historical-raw')

以上变化对我有用

点赞