这是我的数据集的示例
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','运行时'
答案 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()
。
可能是问题吗?
否则,通过打印,