From e41351dfc16ebfa6f4f59bf30301e1aafdac71ce Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Sat, 5 Jul 2025 18:16:48 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20nombre=20de=20march=C3=A9s=20notif?= =?UTF-8?q?i=C3=A9s=20par=20mois=20de=20publication=20et=20par=20source=20?= =?UTF-8?q?#24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/statistiques.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/pages/statistiques.py b/src/pages/statistiques.py index 289aa33..d5f68ee 100644 --- a/src/pages/statistiques.py +++ b/src/pages/statistiques.py @@ -1,6 +1,6 @@ from dash import dcc, html, register_page -from src.figures import get_barchart_sources_notification, get_map_count_marches +from src.figures import get_barchart_sources, get_map_count_marches from src.utils import lf title = "Statistiques" @@ -28,7 +28,14 @@ layout = [ html.Div( children=[ dcc.Graph(figure=get_map_count_marches(lf)), - dcc.Graph(figure=get_barchart_sources_notification(lf)), + dcc.Graph( + figure=get_barchart_sources(lf, "dateNotification") + ), + dcc.Graph( + figure=get_barchart_sources( + lf, "datePublicationDonnees" + ) + ), ] ), ],