gpt4 book ai didi

python - 将索引转换为列 Pandas 数据框

转载 作者:太空狗 更新时间:2023-10-29 22:06:21 25 4
gpt4 key购买 nike

我有以下 Pandas 数据框:

                    |     id    |  LocTime        |ZPos   | XPos
datetime |
2017-01-02 00:14:39 |20421902611| 12531245409231| 0 | -6
2017-01-02 00:14:40 |30453291020| 28332479673070| 0 | -2

我想将日期时间索引转换为数据框的列。我尝试了 df.reset_index(level=['datetime']) 但结果没有改变。任何想法?

最佳答案

需要将输出分配回去或 inplace=True 参数:

df = df.reset_index()

df.reset_index(inplace=True)

print (df)
datetime id LocalTime ZPosition XPosition
0 2017-01-02 00:14:39 10453190861 1483312478909238 0 -9
1 2017-01-02 00:14:40 10453191020 1483312479673076 0 -8

关于python - 将索引转换为列 Pandas 数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44773714/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com