From b0e440595a948634190aeef4cef6c925950634ab Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Mon, 16 Jun 2025 23:02:37 +0200 Subject: [PATCH] =?UTF-8?q?Suppression=20des=20d=C3=A9partements=20DOM/TOM?= =?UTF-8?q?=20pour=20ne=20pas=20perturber=20l'=C3=A9chelle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/statistiques.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/statistiques.py b/src/pages/statistiques.py index 726b118..fd6507b 100644 --- a/src/pages/statistiques.py +++ b/src/pages/statistiques.py @@ -22,6 +22,8 @@ lf = ( .group_by("Département") .len("uid") ) +# Suppression des infos pour les DOM/TOM pour l'instant +lf = lf.remove(pl.col("Département").is_in(["97", "98"])) with open("./data/departements-1000m.geojson") as f: departements = json.load(f)