You've already forked etude_lego_jurassic_world
Ajoute le graphique des personnages représentés
This commit is contained in:
23
scripts/plot_minifig_characters.py
Normal file
23
scripts/plot_minifig_characters.py
Normal file
@@ -0,0 +1,23 @@
|
||||
"""Trace le nombre de minifigs distinctes par personnage."""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
from lib.plots.minifig_characters import plot_minifigs_per_character
|
||||
from lib.rebrickable.minifig_characters import aggregate_by_character, load_minifigs_by_set, write_character_counts
|
||||
|
||||
|
||||
MINIFIGS_BY_SET_PATH = Path("data/intermediate/minifigs_by_set.csv")
|
||||
COUNTS_PATH = Path("data/intermediate/minifig_characters_counts.csv")
|
||||
DESTINATION_PATH = Path("figures/step22/minifig_characters.png")
|
||||
|
||||
|
||||
def main() -> None:
|
||||
"""Construit le CSV de comptage par personnage et trace le graphique."""
|
||||
rows = load_minifigs_by_set(MINIFIGS_BY_SET_PATH)
|
||||
aggregates = aggregate_by_character(rows)
|
||||
write_character_counts(COUNTS_PATH, aggregates)
|
||||
plot_minifigs_per_character(COUNTS_PATH, DESTINATION_PATH)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user