From 3af5531dba1e4533dec76af8eabd3f5dff95592b Mon Sep 17 00:00:00 2001 From: sedrubal <dev@sedrubal.de> Date: Wed, 1 Sep 2021 16:12:39 +0200 Subject: [PATCH] Different colors for cross-tests and not-cross-tests --- evaluate_result_json.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evaluate_result_json.ipynb b/evaluate_result_json.ipynb index f8d7c39..a43cd82 100644 --- a/evaluate_result_json.ipynb +++ b/evaluate_result_json.ipynb @@ -49,7 +49,7 @@ " [test.avg for test in sat_tests],\n", " # xerr=[test.var for test in sat_tests],\n", " align=\"center\",\n", - " color=\"#3465A4\",\n", + " color=[\"#3465A4\" if test.server.name == test.client.name else \"#888\" for test in sat_tests],\n", " )\n", " ax.errorbar(\n", " x=[test.avg for test in sat_tests],\n", -- GitLab