mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
style: Increase font size for scatter plot dot labels
This commit is contained in:
parent
c15ac341e2
commit
8b860615b8
1 changed files with 8 additions and 0 deletions
|
@ -144,6 +144,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="purple",
|
color="purple",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if red_points:
|
if red_points:
|
||||||
|
@ -158,6 +159,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="red",
|
color="red",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if green_points:
|
if green_points:
|
||||||
|
@ -172,6 +174,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="green",
|
color="green",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if orange_points:
|
if orange_points:
|
||||||
|
@ -186,6 +189,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="orange",
|
color="orange",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if brown_points:
|
if brown_points:
|
||||||
|
@ -200,6 +204,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="brown",
|
color="brown",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if pink_points:
|
if pink_points:
|
||||||
|
@ -214,6 +219,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="pink",
|
color="pink",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if qwen_points:
|
if qwen_points:
|
||||||
|
@ -228,6 +234,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="darkblue",
|
color="darkblue",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
if mistral_points:
|
if mistral_points:
|
||||||
|
@ -242,6 +249,7 @@ def plot_over_time(yaml_file):
|
||||||
textcoords="offset points",
|
textcoords="offset points",
|
||||||
color="cyan",
|
color="cyan",
|
||||||
alpha=0.8,
|
alpha=0.8,
|
||||||
|
fontsize=12,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Plot points without legend
|
# Plot points without legend
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue