标签: python pandas dataframe timestamp
我有一个数据框,其索引是一个DateTime标记。我想通过格式化索引来改变它。我必须使用strftime来应用,但是当我以前喜欢它时它不起作用。
df.index = df.index.map(strftime('%Y-%m-%d')) Error: 'strftime' is not defined
但是当我这样做时,它的工作正常:
df1.index[0].strftime('%Y-%m-%d')
我想申请所有索引。建议,拜托?
答案 0 :(得分:2)
你很近,需要strftime:
strftime
df.index = df.index.strftime('%Y-%m-%d')