You've already forked etude_lego_jurassic_world
Analyse la réutilisation des têtes de minifigs
This commit is contained in:
18
scripts/plot_head_reuse.py
Normal file
18
scripts/plot_head_reuse.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""Trace la réutilisation des têtes de minifigs dans le catalogue LEGO."""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from lib.plots.head_reuse import plot_head_reuse
|
||||
|
||||
|
||||
HEAD_REUSE_PATH = Path("data/intermediate/head_reuse.csv")
|
||||
DESTINATION_PATH = Path("figures/step33/head_reuse.png")
|
||||
|
||||
|
||||
def main() -> None:
|
||||
"""Charge les données d'usage des têtes et produit le graphique associé."""
|
||||
plot_head_reuse(HEAD_REUSE_PATH, DESTINATION_PATH)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user