Ajout du nombre de marchés notifiés par mois de publication et par source #24
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
from dash import dcc, html, register_page
|
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
|
from src.utils import lf
|
||||||
|
|
||||||
title = "Statistiques"
|
title = "Statistiques"
|
||||||
@@ -28,7 +28,14 @@ layout = [
|
|||||||
html.Div(
|
html.Div(
|
||||||
children=[
|
children=[
|
||||||
dcc.Graph(figure=get_map_count_marches(lf)),
|
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"
|
||||||
|
)
|
||||||
|
),
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user