如何在 tkinter 中显示数据框

bag*_*uss 5 tkinter dataframe python-3.x

我是 Python 的新手,甚至是 tkinter 的新手。

我使用了来自 stackoverflow 的代码(在 tkinter 中的两帧之间切换)来生成一个程序,根据用户选择的选项,在其中调用新帧并将其放置在彼此的顶部。我的代码的精简版本如下。还有很多帧。

import tkinter as tk                
from tkinter import font  as tkfont 
import pandas as pd

class My_GUI(tk.Tk):

    def __init__(self, *args, **kwargs):
        tk.Tk.__init__(self, *args, **kwargs)

        self.title_font = tkfont.Font(family='Helvetica', size=18, weight="bold", slant="italic")


        container = tk.Frame(self)
        container.pack(side="top", fill="both", expand=True)
        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)

        self.frames = {}
        for F in (StartPage, Page_2):
            page_name = F.__name__
            frame = F(parent=container, controller=self)
            self.frames[page_name] = frame


            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame("StartPage")

    def show_frame(self, page_name):
        '''Show a frame for the given page name'''
        frame = self.frames[page_name]
        frame.tkraise()

class StartPage(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller
        label = tk.Label(self, text="Welcome to....", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)

        button1 = tk.Button(self, text="Option selected",
                            command=lambda: controller.show_frame("Page_2"))
        button1.pack()



class Page_2(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller
        label = tk.Label(self, text="The payment options are displayed below", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)

        #I want the able to be display the dataframe here

        button = tk.Button(self, text="Restart",
                           command=lambda: controller.show_frame("StartPage"))
        button.pack()

a = {'Option_1':[150,82.50,150,157.50,78.75],
     'Option2':[245,134.75,245,257.25,128.63]}
df = pd.DataFrame(a,index=['a',
                    'b',
                    'c',
                    'd',
                    'e']) 

print(df.iloc[:6,1:2])

if __name__ == "__main__":
    app = My_GUI()
    app.mainloop()
Run Code Online (Sandbox Code Playgroud)

当 Page_2 出现时,我希望它显示一个带有以下代码的数据框。

a = {'Option_1':[150,82.50,150,157.50,78.75],
     'Option2':[245,134.75,245,257.25,128.63]}
df = pd.DataFrame(a,index=['a',
                    'b',
                    'c',
                    'd',
                    'e']) 

print(df.iloc[:6,1:2])
Run Code Online (Sandbox Code Playgroud)

我已经搜索过例如如何在 tkinter 窗口(准确地说是 tk 框架)(没有提供答案)和其他网站中显示一个熊猫数据框以寻找类似问题的答案,但没有成功。

当我选择 Page_2 时,我将如何以及在哪里放置我的数据框代码选择以显示在我想要的区域中?

Tha*_*awn 9

查看pandastable。这是一个非常漂亮的库,用于显示和处理 Pandas 表。

这是他们文档中的代码示例:

from tkinter import *
from pandastable import Table, TableModel

class TestApp(Frame):
        """Basic test frame for the table"""
        def __init__(self, parent=None):
            self.parent = parent
            Frame.__init__(self)
            self.main = self.master
            self.main.geometry('600x400+200+100')
            self.main.title('Table app')
            f = Frame(self.main)
            f.pack(fill=BOTH,expand=1)
            df = TableModel.getSampleData()
            self.table = pt = Table(f, dataframe=df,
                                    showtoolbar=True, showstatusbar=True)
            pt.show()
            return

app = TestApp()
#launch the app
app.mainloop()
Run Code Online (Sandbox Code Playgroud)

这里有一个截图(也来自他们的文档):

pandastable 文档的屏幕截图


Pie*_*olo 5

首先,您可以查看LabelText小部件,它们通常用于在您的 GUI 中显示文本。

您可能可以尝试以下操作:

class Page_2(tk.Frame):
    def __init__(self, parent, controller):
        # ... your code ...
        global df # quick and dirty way to access `df`, think about making it an attribute or creating a function that returns it
        text = tk.Text(self)
        text.insert(tk.END, str(df.iloc[:6,1:2]))
        text.pack()
        # lbl = tk.Label(self, text=str(df.iloc[:6,1:2])) # other option
        # lbl.pack()                                      #
Run Code Online (Sandbox Code Playgroud)

最后,它真的归结为您想要的花哨程度:小部件是高度可定制的,因此您可以实现一些非常赏心悦目的东西,而不是本示例的基本外观。


编辑:

我添加了一个Combobox小部件来选择要显示的选项,并将Button其打印到您选择的“显示”小部件。

from tkinter import ttk # necessary for the Combobox widget

# ... your code ...

class Page_2(tk.Frame):

    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        self.controller = controller
        label = tk.Label(self, text="The payment options are displayed below", font=controller.title_font)
        label.pack(side="top", fill="x", pady=10)

        global df
        tk.Label(self, text='Select option:').pack()
        self.options = ttk.Combobox(self, values=list(df.columns))
        self.options.pack()
        tk.Button(self, text='Show option', command=self.show_option).pack()

        self.text = tk.Text(self)
        self.text.pack()

        tk.Button(self, text="Restart",
                  command=lambda: controller.show_frame("StartPage")).pack()

    def show_option(self):
        identifier = self.options.get() # get option
        self.text.delete(1.0, tk.END)   # empty widget to print new text
        self.text.insert(tk.END, str(df[identifier]))
Run Code Online (Sandbox Code Playgroud)

显示的文本是str数据框列的默认表示;自定义文本留作练习。

  • @ Pier Paolo:感谢链接并感谢所有建议。 (2认同)