From 68e220364a2c77a5dfb120f754c9fdbc6ef8c969 Mon Sep 17 00:00:00 2001
From: Tim Jammer <tim.jammer@tu-darmstadt.de>
Date: Fri, 2 Aug 2024 13:07:40 +0200
Subject: [PATCH] capitalization in plot title

---
 MBB.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MBB.py b/MBB.py
index f67624ae..61310e66 100755
--- a/MBB.py
+++ b/MBB.py
@@ -729,7 +729,7 @@ def plot_helpfulness(df, outpath, toolname):
         mpatches.Patch(color=colors[3], label='not helpful report')
     ]
     ax.legend(handles=handles, ncol=2, loc='center left', bbox_to_anchor=(0.05, -0.3))
-    #ax.set_title(f"Helpfulness of {toolname} error reports")
+    #ax.set_title(f"Helpfulness of {toolname.upper()} Error Reports")
     ax.set_xlabel("Percentage of error reports")
     ax.set_ylabel("MPI feature")
     plt.tight_layout()
-- 
GitLab