如何将字符串的熊猫索引转换为日期时间格式
我的数据框“ df”是这样的
value
2015-09-25 00:46 71.925000
2015-09-25 00:47 71.625000
2015-09-25 00:48 71.333333
2015-09-25 00:49 64.571429
2015-09-25 00:50 72.285714
但是索引是字符串类型,但是我需要它的日期时间格式,因为我得到了错误
'Index' object has no attribute 'hour'
使用时
df['A'] = df.index.hour
df.index.to_datetime()
或df.index = pandas.to_datetime(df.index)
(不推荐使用前者)。