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.
当我上传带有时间索引的 pandas.DataFrame 时:
index | value ===========|=========== 2019-02-03 | 3.9 2019-02-04 | 4.0
对于 DolphinDB 服务器,索引似乎在 DolphinDB Python API 中被删除:
value =========== 3.9 4.0
如何保持时间索引?
DolphinDB 数据库不导入 pandas.DataFrame 的索引。要在 DolphinDB 中保留索引列,您可以使用 df.reset_index() 在 DolphinDB 表中为索引创建一个新列。