[PYTHON] Affichage externe des diagrammes matplotlib à l'aide de tkinter

Affichage externe des chiffres avec tkinter

Ajoutez la partie suivante sous le script qui affiche la figure avec matplotlib.

tkinter.py


def _destroyWindow():
    root.quit()
    root.destroy()
    
root = tk.Tk()
root.withdraw()
root.title("title")
root.geometry("770x500") 
root.protocol('WM_DELETE_WINDOW', _destroyWindow)  # When you close the tkinter window.

# Canvas
canvas = FigureCanvasTkAgg(fig, master=root)  # Generate canvas instance, Embedding fig in root
canvas.draw()
canvas.get_tk_widget().pack()
#canvas._tkcanvas.pack()

# root
root.update()
root.deiconify()
root.mainloop()

Si la figure de la marque de plume bleue est affichée avec ceci, c'est ok

Recommended Posts

Affichage externe des diagrammes matplotlib à l'aide de tkinter
Affichage japonais de matplotlib, seaborn
Création d'animation flexible à l'aide de l'animation.FuncAnimation de matplotlib
Afficher les diagrammes matplotlib dans une application Web
Essayez d'utiliser Tkinter
Essayez d'utiliser matplotlib
Bases de l'écran d'entrée / sortie en utilisant tkinter en python3
Dessin graphique avec matplotlib
J'ai essayé d'utiliser matplotlib
Utilisation des packages Python #external
Essayez d'utiliser Tkinter de Python
Exemple d'utilisation de lambda
Affichage des fractions (liste)
Installation de matplotlib (Python 3.3.2)
Créez instantanément un diagramme de données 2D à l'aide de matplotlib de python