尝试读取 xlsx 文件后出现以下错误,使用羽毛将其写入数据帧,然后使用羽毛读取相同的数据帧并使用 df.head() 显示结果
import pandas as pd
import feather
v = pd.__version__
#--- read in excel data
in_path = '/Users/me/Documents/python/data/FGS2000-2015.xlsx'
out_path = '/Users/me/Documents/python/data/mydata.feather'
df = pd.read_excel(in_path)
#--- write pandas dataframe to disk
feather.write_dataframe(df,out_path)
#--- read dataframe from disk
data = feather.read_dataframe(out_path)
data.head()
“模块”对象没有属性“write_dataframe”错误。