gpt4 book ai didi

python-3.x - 转换 pandas 时间戳列表

转载 作者:行者123 更新时间:2023-12-04 10:50:37 24 4
gpt4 key购买 nike

在我的变量“Datelist3”中有一个 pandas 时间戳列表,格式如下:

[Timestamp('2019-12-04 09:00:00+0100', tz='Europe/Rome'), Timestamp('2019-12-04 09:30:00+0100', tz='Europe/Rome'), ....]

我很难将此列表转换为日期时间字符串列表,格式如下:

['2019-12-04 09:00:00', '2019-12-04 09:30:00', .....]

我做了这些测试:

Datelist3.to_datetime # -> error: 'list' object has no attribute 'to_datetime'
Datelist3.dt.to_datetime # -> error: 'list' object has no attribute 'dt'
Datelist3.to_pydatetime() # -> error: 'list' object has no attribute 'to_pydatetime()'
Datelist3.dt.to_pydatetime() # -> error: 'list' object has no attribute 'dt'

我使用以下语句访问变量“Datelist3”:

Datelist3 = quoteIntraPlot.index.tolist()

如果我将此指令更改为:

Datelist3 = quoteIntraPlot.index.strftime("%Y-%m-%d %H:%M:%S").tolist()

这正是我想要实现的目标。问题是在 10 次中,6-7 次是可以的,3-4 次它给我一个错误:“'Index' object has no 'strftime'”。这很奇怪。我该如何解决这个问题?

最佳答案

如果您的数据格式正确,这会起作用:

time_list = [Timestamp('2019-12-04 09:00:00+0100', tz='Europe/Rome'), Timestamp('2019-12-04 09:30:00+0100', tz='Europe/Rome'), ....]
str_list = [t.strftime("%Y-%m-%d %H:%M:%S") for t in time_list]

但是,如果您遇到与以前相同的错误,则意味着并非所有索引都是时间戳。在这种情况下,您需要先清理数据。

关于python-3.x - 转换 pandas 时间戳列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59490139/

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