20 lines
530 B
Python
20 lines
530 B
Python
"""Trace la moyenne annuelle et glissante des pièces par set."""
|
|
|
|
from pathlib import Path
|
|
|
|
from lib.plots.parts_per_set import plot_parts_per_set
|
|
|
|
|
|
ENRICHED_SETS_PATH = Path("data/intermediate/sets_enriched.csv")
|
|
MILESTONES_PATH = Path("config/milestones.csv")
|
|
DESTINATION_PATH = Path("figures/step07/avg_parts_per_set.png")
|
|
|
|
|
|
def main() -> None:
|
|
"""Génère le graphique des tailles moyennes des sets."""
|
|
plot_parts_per_set(ENRICHED_SETS_PATH, MILESTONES_PATH, DESTINATION_PATH)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|