this is my original dataframe, I want to use the Day column as the index of the dataframe
passing the 'Day' column into set_index()
为什么新索引中没有多余的括号和逗号?
答案 0 :(得分:0)
我发现,在前一个数据帧中附加作为索引列的列,然后将附加列设置为索引时,会发生此问题。
我的猜测是索引列存储为元组列表,然后在新索引中无功能地复制它们。
这是我用来修复新索引的代码
df.index = df.index.map("".join)