【发布时间】:2020-06-22 18:47:58
【问题描述】:
我正在尝试运行一个提供两个按钮的 gui。第一个打印文件“names.txt”的内容,第二个是绘制数据。但是,如果我先绘制数据然后再打印内容,则子图将保持原样,我无法清除它。这是我的输出: [![wrong_output][1]]1
我读了帖子:Clear figure subplots matplotlib python 并尝试了同样的方法,但是我没有得到正确的输出
次要情节并没有破坏。
我什至尝试使用self.scatter1.get_tk_widget().destroy() 来destroy 小部件,但这也不起作用
有人可以告诉我如何进行吗?
我的代码是:
import tkinter as tk
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
import random
x_loc=[5, 6, 34, 54, 23]
y_loc=[3, 4.34, 2, 44, 65]
avgLst=[24, 35.65, 54.6, 53, 2]
root= tk.Tk()
class graph_plot():
global graph_past
global graph_Avg
def __init__(self):
self.figure1 = plt.Figure()
self.scatter1 = FigureCanvasTkAgg(self.figure1, root)
self.scatter1.get_tk_widget().place(relx= 0.5, rely=0.1)
self.subplot1 = self.figure1.add_subplot(111)
self.subplot1.set_xlabel('x location')
self.subplot1.set_ylabel('y location')
def display_graph(self):
data1 = {'x-locations' : x_loc , 'y_locations' : y_loc}
df3 = DataFrame(data1,columns=['x-locations','y_locations'])
global graph_past
label2.config(text='')
print('graph in= ' , graph_past)
im0= self.subplot1.scatter(df3['x-locations'],df3['y_locations'], c=avgLst, cmap='rainbow', vmin=min(avgLst), vmax=max(avgLst))
self.figure1.colorbar(im0)
self.subplot1.set_title('Avg')
graph_past= True
def clear_graph(self):
print('Destroyed!')
self.subplot1.clear
## ??? which command
def do_graph():
obj1 = graph_plot()
obj1.display_graph()
def on_key(event):
if myLine and event.keysym != 'Return':
update_print()
def do_printing():
global myLine
global graph_past
#print('graph_past= ' , graph_past)
if graph_past:
obj2 = graph_plot()
obj2.clear_graph()
graph_past = False
input_File = open('names.txt','r')
myLine = input_File.readlines()
update_print()
def update_print():
label2.config(text=random.choice(myLine))
def flag_print():
global graph_Avg
graph_Avg=False
do_printing()
def flag_Avg():
global graph_Avg
graph_Avg=True
do_graph()
root.bind('<Key>', on_key)
myCanvas = tk.Canvas(root, width = 800, height = 500)
myCanvas.grid(row=2, column= 4)
label1 = tk.Label(root, text='MENU')
label1.config(font=('Arial', 20))
myCanvas.create_window(200, 20, window=label1)
myLine= None
graph_Avg=False
graph_past=False
label2 = tk.Label(root, font=('Courier', 15))
label2.place(relx= 0.3, rely=0.1)
B1 = tk.Button(root, text ="Option 1", font=('Courier', 12), command = flag_print)
myCanvas.create_window(200, 100, window=B1)
B2 = tk.Button(root, text ="Option 2", font=('Courier', 12), command = flag_Avg)
myCanvas.create_window(200, 140, window=B2)
root.mainloop()```
[1]: https://i.stack.imgur.com/RgL7S.png
【问题讨论】:
标签: python python-3.x matplotlib tkinter subplot