From 7e5ea4c4ccd80f004b623f25113c0d28f57b1cf6 Mon Sep 17 00:00:00 2001 From: mancini <mancini@astron.nl> Date: Wed, 5 Jun 2024 16:23:01 +0200 Subject: [PATCH] Fix columns --- ci/summarize-results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/summarize-results.py b/ci/summarize-results.py index a2135b3..3b46b36 100644 --- a/ci/summarize-results.py +++ b/ci/summarize-results.py @@ -48,7 +48,7 @@ def create_summary_plot(metrics, outplot_name): grid = seaborn.FacetGrid(metrics, col="architecture", row="parameters") - grid.set_titles(template="Arch: {row_name} - {col_name}") + grid.set_titles(template="Arch: {col_name} - {row_name}") grid.map(seaborn.barplot, "compiler_version", "cpu_time", "method") grid.set_ylabels(f"CPU time({time_unit})") grid.add_legend() -- GitLab