1

Ajoute jalons et variantes de heatmaps normalisées à l'étape 15

This commit is contained in:
2025-12-01 23:18:02 +01:00
parent feb567d01e
commit eca3c0809f
4 changed files with 46 additions and 10 deletions

View File

@@ -7,6 +7,7 @@ from lib.plots.colors_timeline import plot_colors_heatmap, plot_translucent_shar
TIMELINE_PATH = Path("data/intermediate/colors_timeline.csv")
MATRIX_PATH = Path("data/intermediate/colors_year_color_matrix.csv")
MILESTONES_PATH = Path("config/milestones.csv")
TRANSLUCENT_DESTINATION = Path("figures/step15/colors_translucent_share.png")
HEATMAP_LINEAR_DESTINATION = Path("figures/step15/colors_heatmap_linear.png")
HEATMAP_LOG_DESTINATION = Path("figures/step15/colors_heatmap_log.png")
@@ -15,7 +16,7 @@ HEATMAP_SHARE_DESTINATION = Path("figures/step15/colors_heatmap_share.png")
def main() -> None:
"""Construit les visuels d'évolution annuelle des palettes."""
plot_translucent_share(TIMELINE_PATH, TRANSLUCENT_DESTINATION)
plot_translucent_share(TIMELINE_PATH, MILESTONES_PATH, TRANSLUCENT_DESTINATION)
plot_colors_heatmap(MATRIX_PATH, HEATMAP_LINEAR_DESTINATION, use_log_scale=False)
plot_colors_heatmap(MATRIX_PATH, HEATMAP_LOG_DESTINATION, use_log_scale=True)
plot_colors_heatmap(MATRIX_PATH, HEATMAP_SHARE_DESTINATION, normalize_by_year=True)