Messages postés par "vlavince"

Sujet Date Extrait
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

dimanche 16 janvier 2022 à 19h08 Merci encore merci @adri1 Pour afficher le df.head, j'essaye de m'inspirer de ce code : import pandas as pd import numpy as np import sys from tkinter import * root = Tk() root.geome…
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

dimanche 16 janvier 2022 à 08h17 @adri1 merci beaucoup pour ta réponse. Après beaucoup de recherches, j'ai trouvé comment faire : il suffisait de récupérer la variable et de mettre variable.index et variable.values dans ax.bar Je…
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

samedi 15 janvier 2022 à 11h39 Si c'est bien mon code (créé après des recherches), mais je suis loin d'avoir fini. J'en suis à la fonction 1/3 ... Alors, J'arrive à créer mon dataframe dans la première fonction (via le menu). D…
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

samedi 15 janvier 2022 à 10h49 Bonjour, Merci
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

vendredi 14 janvier 2022 à 22h54 Mon premier script python non abouti :p ```python fen = tk.Tk() fen.geometry("1200x900") fen.config(bg = "#87CEEB") fen.title("Voici mon programme en python") frame = tk.Frame(fen) frame.p…
Afficher le graphique Matplotlib dans une fenêtre tkinter

Matplotlib via tkinter

vendredi 14 janvier 2022 à 10h31 Bonjour, J'ai un projet un peu identique et étant débutant je n'arrive pas utiliser les données d'un dataframe. Dans votre exemple, les données du df remplaceraient month et turnover. J'ai créé l…