1

Premiers éléments de l'étude

This commit is contained in:
2025-12-01 21:57:05 +01:00
commit 6494948b3c
50 changed files with 2595 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
"""Trace l'évolution du nombre de sets par année (thèmes filtrés) avec jalons."""
from pathlib import Path
from lib.plots.sets_per_year import plot_sets_per_year
ENRICHED_SETS_PATH = Path("data/intermediate/sets_enriched.csv")
MILESTONES_PATH = Path("config/milestones.csv")
DESTINATION_PATH = Path("figures/step07/sets_per_year.png")
def main() -> None:
"""Génère le graphique des sets par année."""
plot_sets_per_year(ENRICHED_SETS_PATH, MILESTONES_PATH, DESTINATION_PATH)
if __name__ == "__main__":
main()