mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
aider: Make the dots bigger.
# Aider chat conversation: USER: make the dots bigger ASSISTANT: To make the dots bigger, we can adjust the `s` parameter in the `scatter` function, which controls the size of the dots. Here are the changes: benchmark/over_time.py ```python <<<<<<< SEARCH ax.scatter(dates, pass_rates, c=colors, alpha=0.5) ======= ax.scatter(dates, pass_rates, c=colors, alpha=0.5, s=100) >>>>>>> REPLACE ```
This commit is contained in:
parent
3f1b86a1cc
commit
a018fdfe2c
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def plot_over_time(yaml_file):
|
|||
fig, ax = plt.subplots(figsize=(10, 4))
|
||||
ax.grid(axis="y", zorder=0, lw=0.2)
|
||||
colors = ['red' if 'gpt-4' in model else 'green' if 'gpt-3.5' in model else 'blue' for model in models]
|
||||
ax.scatter(dates, pass_rates, c=colors, alpha=0.5)
|
||||
ax.scatter(dates, pass_rates, c=colors, alpha=0.5, s=100)
|
||||
|
||||
for i, model in enumerate(models):
|
||||
ax.annotate(model, (dates[i], pass_rates[i]), fontsize=12, alpha=0.75,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue