20 lines
536 B
Python
20 lines
536 B
Python
"""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()
|