gpt4 book ai didi

python - 将 pandas DataFrame 索引转换为时间戳格式

转载 作者:太空狗 更新时间:2023-10-29 20:57:56 27 4
gpt4 key购买 nike

我创建了一个数据框。在 iPython 上运行一些命令我得到以下结果:

In [5]: df.tail()
Out[5]:
open high low close volume
date
2017-02-22 15:00 1.05131 1.05137 1.05074 1.05075 543
2017-02-22 15:30 1.05074 1.05165 1.05072 1.05139 506
2017-02-22 16:00 1.05137 1.05193 1.05121 1.05141 488
2017-02-22 16:30 1.05144 1.05205 1.05056 1.05065 747
2017-02-22 17:00 1.05061 1.05167 1.04988 1.04997 753

In [6]: df.index[0]
Out[6]: '2011-11-21 14:30'

In [7]: type(df.index[0])
Out[7]: str

如您所见,索引采用 str 格式,但我需要它采用 Timestamp 格式。可能吗?

最佳答案

试试这个

df.index = pd.to_datetime(df.index)

关于python - 将 pandas DataFrame 索引转换为时间戳格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42399552/

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