From 8b860615b8839cabb6297cf476768a0462dea80e Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 20 Nov 2024 20:10:40 -0800 Subject: [PATCH] style: Increase font size for scatter plot dot labels --- benchmark/over_time.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/benchmark/over_time.py b/benchmark/over_time.py index d6617429d..10b769b97 100644 --- a/benchmark/over_time.py +++ b/benchmark/over_time.py @@ -144,6 +144,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="purple", alpha=0.8, + fontsize=12, ) if red_points: @@ -158,6 +159,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="red", alpha=0.8, + fontsize=12, ) if green_points: @@ -172,6 +174,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="green", alpha=0.8, + fontsize=12, ) if orange_points: @@ -186,6 +189,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="orange", alpha=0.8, + fontsize=12, ) if brown_points: @@ -200,6 +204,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="brown", alpha=0.8, + fontsize=12, ) if pink_points: @@ -214,6 +219,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="pink", alpha=0.8, + fontsize=12, ) if qwen_points: @@ -228,6 +234,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="darkblue", alpha=0.8, + fontsize=12, ) if mistral_points: @@ -242,6 +249,7 @@ def plot_over_time(yaml_file): textcoords="offset points", color="cyan", alpha=0.8, + fontsize=12, ) # Plot points without legend