Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个熊猫数据框 dfwin。
我将它保存为羽毛格式,希望我能在 R 中阅读它。
但是R总是抛出错误“openFeather(路径)中的错误:无效:不是羽毛文件回溯:
有人可以在这里帮助我吗?我使用的 R 代码如下:
library(feather) dfwin = read_feather('./aFolder/dfwin.feather')```
我遇到了完全相同的问题,我通过arrow在 r 中使用 package 找到了解决方案。可以使用以下代码代替read_feather()羽毛库中的代码。
arrow
read_feather()
arrow::read_feather("./aFolder/dfwin.feather")
我仍然不明白为什么羽毛包中的功能不起作用,但箭头包中的相同功能可以解决问题。