You've already forked etude_lego_jurassic_world
Premiers éléments de l'étude
This commit is contained in:
19
scripts/plot_sets_per_year.py
Normal file
19
scripts/plot_sets_per_year.py
Normal 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()
|
||||
Reference in New Issue
Block a user