From 8841ebe9d8a3afc12abd4f87ac7a9fd02d7a8b7d Mon Sep 17 00:00:00 2001 From: Nicolas Hiillos Date: Wed, 15 Mar 2023 09:22:36 +0200 Subject: [PATCH] Increase size of red dots --- scripts/plot_lite6_csv/plot_lite6_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plot_lite6_csv/plot_lite6_csv.py b/scripts/plot_lite6_csv/plot_lite6_csv.py index 6fb79f4..6815ba9 100644 --- a/scripts/plot_lite6_csv/plot_lite6_csv.py +++ b/scripts/plot_lite6_csv/plot_lite6_csv.py @@ -71,7 +71,7 @@ img1 = ax.scatter(x_succ, y_succ, z_succ, marker='s', s=2, color='green') img2 = ax.scatter(x_fail, y_fail, z_fail, marker='s', - s=0.1, color='red') + s=1, color='red') # adding title and labels ax.set_title("3D Heatmap") ax.set_xlabel('X-axis')