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.
R 生成的羽毛文件有一个 start_time 列,其中包含日期和时间。日期是从 2016 年开始。
我正在使用以下代码在 pandas 中读取相同的文件
df = feather.read_dataframe(file)
当我显示 df 时,它显示 1970 年的日期。日期的类型为 datetime64[ns, UTC]。任何帮助将不胜感激。谢谢
在 pandas 的最新版本(0.20.1)中,您可以使用read_feather:
read_feather
result = pd.read_feather('example.feather')
文档。