我有以下df:
A B
2018-01-02 100.000000 100.000000
2018-01-03 100.808036 100.325886
2018-01-04 101.616560 102.307700
我期待更改索引的时间格式,所以我尝试了(在链接Format pandas dataframe index date中使用@jezrael的回复):
df.index = rdo.index.strftime('%d-%m-%Y')
但它输出:
AttributeError: 'Index' object has no attribute 'strftime'
我想要的输出是:
A B
02-01-2018 100.000000 100.000000
03-01-2018 100.808036 100.325886
04-01-2018 101.616560 102.307700
我发现上述链接中提出的问题与我的问题非常相似。我真的不明白为什么会出现attrError。
答案 0 :(得分:2)
您的索引似乎是CultureInfo
(string
)dtype:
object