当前位置: 首页 > 工具软件 > Feather > 使用案例 >

python读feather格式文件

赵刚豪
2023-12-01

python中feather安装

pip install feather-format

注意:不要直接用pip install feather——可以显示安装了但是读的时候会报错,例如:

ImportError: cannot import name 'getuid' from 'os' (D:\anaconda\lib\os.py)

python读feather文件

import feather
df = feather.read_dataframe("./data/train.feather")

 

 类似资料: