标签: python
我该如何解决属性错误:
The given column for the id is not present in the data
当column_id在数据框中为“ ID”时。
column_id
答案 0 :(得分:0)
问题是ID是MultiIndex的级别,因此需要先将所有级别转换为reset_index的列:
ID
MultiIndex
reset_index
df = df.reset_index()