前提・実現したいこと
tkinter上でcsvファイルを選択後、テキストボックスにそのcsvに含まれているカラム名を入力することで、該当するデータを抽出したいと考えています。
現状は、あらかじめテキストボックスにカラム名を入力しておき、def fileselectでcsvを選択、該当するカラム名のデータをリストボックスに表示させようと思っています。
発生している問題・エラーメッセージ
csv_fileにはデータが格納されているのですが、def fileselectをクリック後に以下のようなエラーが表示されています。 raise KeyError(key) from err KeyError: None
該当のソースコード
python
1import pandas as pd 2import tkinter as tk 3 4root=tk.Tk() 5root.title("test") 6root.geometry("600x600") 7 8frame=tk.Frame() 9frame.grid(row=0) 10text=tk.Entry(width=20) 11text.place(x=100,y=100) 12var=tk.StringVar() 13 14listbox=tk.Listbox(frame,height=30,selectmode="single") 15listbox.grid(row=1,column=1) 16 17def fileselect(): 18 type = [("all file","*")] 19 file_path = filedialog.askopenfilename(filetypes = type, initialdir = os.getcwd ()) 20 csv_file = pd.read_csv(file_path, engine="python",index_col=None) 21 i=var.set(text.get()) 22 word=csv_file.loc[:,i] 23 listbox.insert(tk.END,word) 24 25Button=tk.Button(frame,text="selectfile",command=fileselect,width=20) 26Button.grid(row=3,column=1) 27root.mainloop()
補足情報(FW/ツールのバージョンなど)
M1 mac anacondaを使用しています。
ご教授よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/16 08:43