在熊猫问题中删除专栏

时间:2019-01-17 22:09:08

标签: python pandas dataframe

这是我的数据集的示例

id   imdb_id  popularity  budget     revenue   cast         runtime
1357 0        3.1         150000000  20000000  Chris Pratt  124

这是我的代码

df.drop(['imdb_id', 'cast', 'runtime'], axis=1 , inplace=True)

我收到此错误

  

ValueError:轴中不包含标签['imdb_id''cast','运行时'

1 个答案:

答案 0 :(得分:1)

我注意到[{id: 1, children: [{id: 2, ,children: [ {id: 3}]}] ,{ id: 6} ]} ] ... 中缺少from tkinter import * lay=[] root = Tk() root.geometry('300x400+100+50') def exit_btn(): top = lay[0] top.quit() top.destroy() def create(): top = Toplevel() lay.append(top) top.title("Main Panel") top.geometry('500x500+100+450') msg = Message(top, text="Show on Sub-panel",width=100) msg.pack() btn = Button(top,text='EXIT',command=exit_btn) btn.pack() Button(root, text="Click me,Create a sub-panel", command=create).pack() mainloop()

可能是问题吗?

否则,通过打印,

确保列名不包含空格。