IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Tkinter Python Discussion :

actualiser un graphique matplotlib dans tkinter


Sujet :

Tkinter Python

  1. #1
    Membre à l'essai
    Homme Profil pro
    Chargé d'affaire
    Inscrit en
    Avril 2021
    Messages
    18
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 41
    Localisation : France, Saône et Loire (Bourgogne)

    Informations professionnelles :
    Activité : Chargé d'affaire

    Informations forums :
    Inscription : Avril 2021
    Messages : 18
    Points : 11
    Points
    11
    Par défaut actualiser un graphique matplotlib dans tkinter
    bonjour tout le monde

    je suis en train de faire un petit programme qui trace un graphique matplotlib dans un fenetre tkinter, je rentre 3 valeurs a, b, c et en cliquant sur tracer il m'affiche la courbe y=ax²+bx+c mais lorsque je change les valeurs et que je clique de nouveau sur le bouton tracer le graph ne se met pas a jour. Et je ne comprends pas comment résoudre le problème.
    merci d'avance pour votre aide

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    from tkinter import *
    from tkinter import ttk
    import numpy as np
    import matplotlib.pyplot as plt
    from matplotlib.figure import Figure
    from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
     
    def courbe():
    	m=float(a.get())
     
    	n=float(b.get())
     
    	o=float(c.get())
     
    	fig1 = Figure(figsize=(8, 8), dpi=120)
    	fig1.patch.set_facecolor("#82B4BF")
    	ax = fig1.subplots()
    	x = np.arange(-10, 10, 0.2)
    	y = m*x**2+n*x+o
    	ax.plot(x, y, linewidth=0.8)
     
    	canvas = FigureCanvasTkAgg(fig1, master=window_p)
    	canvas.get_tk_widget().pack()
    	canvas.draw()
     
     
    window_p = Tk()
    window_p.title("fonction y=ax²+bx+c")
    window_p.geometry("1200x800")
    window_p.config(background="#82B4BF")
     
     
    frame1 = Frame(window_p, background="#82B4BF", borderwidth=2, relief=GROOVE)
    frame1.config(width=135, height=190)
    frame1.pack(side=LEFT)
     
    label_titre = Label(frame1, text="Valeurs", font=("Helvetica", 12), bg="#82B4BF")
    label_titre.place(x=30, y=10)
     
    label_a = Label(frame1, text="a :", font=("Helvetica", 12), bg="#82B4BF")
    label_a.place(x=20, y=45)
    a = StringVar()
    a_entry = Entry(frame1, textvariable=a, width=4, justify="center", font=("Helvetica", 12))
    a_entry.place(x=70, y=45)
     
    label_b = Label(frame1, text="b :", font=("Helvetica", 12), bg="#82B4BF")
    label_b.place(x=20, y=75)
    b = StringVar()
    b_entry = Entry(frame1, textvariable=b, width=4, justify="center", font=("Helvetica", 12))
    b_entry.place(x=70, y=75)
     
    label_c = Label(frame1, text="c :", font=("Helvetica", 12), bg="#82B4BF")
    label_c.place(x=20, y=105)
    c = StringVar()
    c_entry = Entry(frame1, textvariable=c, width=4, justify="center", font=("Helvetica", 12))
    c_entry.place(x=70, y=105)
     
     
    bouton_calcul = Button(frame1, text="TRACER", font=("Helvetica", 10), command=courbe)
    bouton_calcul.place(x=30, y=145)
     
     
    window_p.mainloop()

  2. #2
    Membre expérimenté
    Avatar de MPython Alaplancha
    Homme Profil pro
    Paysan à 3 francs six sous
    Inscrit en
    Juin 2018
    Messages
    905
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Pyrénées Orientales (Languedoc Roussillon)

    Informations professionnelles :
    Activité : Paysan à 3 francs six sous
    Secteur : Agroalimentaire - Agriculture

    Informations forums :
    Inscription : Juin 2018
    Messages : 905
    Points : 1 592
    Points
    1 592
    Billets dans le blog
    6
    Par défaut
    Bonjour,
    Tu peux appliquer la méthode destroy() à canvas.get_tk_widget() ,mais il te faut réécrire ton code de façon à rendre global certain attributs...

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    class Courbe:
        def __init__(self):
            self.window_p = Tk()
            self.window_p.title("fonction y=ax²+bx+c")
            self.window_p.geometry("1200x800")
            self.window_p.config(background="#82B4BF")
            frame1 = Frame(self.window_p, background="#82B4BF", borderwidth=2, relief=GROOVE)
            frame1.config(width=135, height=190)
            frame1.pack(side=LEFT)
     
            label_titre = Label(frame1, text="Valeurs", font=("Helvetica", 12), bg="#82B4BF")
            label_titre.place(x=30, y=10)
     
            label_a = Label(frame1, text="a :", font=("Helvetica", 12), bg="#82B4BF")
            label_a.place(x=20, y=45)
            self.a = StringVar()
            a_entry = Entry(frame1, textvariable=self.a, width=4, justify="center", font=("Helvetica", 12))
            a_entry.place(x=70, y=45)
     
            label_b = Label(frame1, text="b :", font=("Helvetica", 12), bg="#82B4BF")
            label_b.place(x=20, y=75)
            self.b = StringVar()
            b_entry = Entry(frame1, textvariable=self.b, width=4, justify="center", font=("Helvetica", 12))
            b_entry.place(x=70, y=75)
     
            label_c = Label(frame1, text="c :", font=("Helvetica", 12), bg="#82B4BF")
            label_c.place(x=20, y=105)
            self.c = StringVar()
            c_entry = Entry(frame1, textvariable=self.c, width=4, justify="center", font=("Helvetica", 12))
            c_entry.place(x=70, y=105)
     
     
            self.canvas=False
            bouton_calcul = Button(frame1, text="TRACER", font=("Helvetica", 10), command=self.courbe)
            bouton_calcul.place(x=30, y=145)
            self.window_p.mainloop()
        def courbe(self):
     
            if self.canvas:
                self.canvas.get_tk_widget().destroy()
            m=float(self.a.get())
     
            n=float(self.b.get())
     
            o=float(self.c.get())
     
            self.fig1 = Figure(figsize=(8, 8), dpi=120)
            self.fig1.patch.set_facecolor("#82B4BF")
            ax = self.fig1.subplots()
     
            x = np.arange(-10, 10, 0.2)
            y = m*x**2+n*x+o
            ax.plot(x, y, linewidth=0.8)
     
            self.canvas = FigureCanvasTkAgg(self.fig1, master=self.window_p)
            self.canvas.get_tk_widget().pack()
            self.canvas.draw()
     
    i = Courbe()

  3. #3
    Membre expert
    Homme Profil pro
    Inscrit en
    Octobre 2011
    Messages
    2 906
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Octobre 2011
    Messages : 2 906
    Points : 3 740
    Points
    3 740
    Par défaut
    Salut,

    Citation Envoyé par Hominidé Voir le message
    Tu peux appliquer la méthode destroy() à canvas.get_tk_widget() ,...
    Avec cette méthode on voit un petit "tremblement"... Détruire le widget c'est peut-être un peu brutal...

    On peut effacer l'axes ou mieux on peut se contenter de supprimer la courbe...

Discussions similaires

  1. [Python 3.X] Afficher une carte de chaleur matplotlib dans une fenetre tkinter
    Par thomas18F dans le forum Tkinter
    Réponses: 2
    Dernier message: 05/12/2020, 11h36
  2. Tkinter et graphique matplotlib python
    Par Audreyplrd dans le forum Tkinter
    Réponses: 0
    Dernier message: 19/04/2019, 09h14
  3. Réponses: 3
    Dernier message: 24/05/2018, 22h00
  4. Réponses: 1
    Dernier message: 10/04/2015, 10h45
  5. Réponses: 2
    Dernier message: 18/09/2008, 18h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo