This commit is contained in:
Paul Gauthier 2023-07-01 21:31:54 -07:00
parent e2af782b59
commit f548f88220
2 changed files with 85 additions and 82 deletions

View file

@ -140,18 +140,21 @@ def show_stats(dirnames):
ax.set_xticks([p + 1.5 * width for p in pos])
ax.set_xticklabels(models)
top = 95
ax.annotate(
"First coding\nattempt",
xy=(2.9, 51),
xytext=(2.25, 85),
xytext=(2.5, top),
horizontalalignment="center",
verticalalignment="top",
arrowprops={"arrowstyle": "->", "connectionstyle": "arc3,rad=0.3"},
)
ax.annotate(
"Second attempt,\nafter seeing\nunit test errors",
xy=(3.1, 68),
xytext=(4.25, 80),
xytext=(4.25, top),
horizontalalignment="center",
verticalalignment="top",
arrowprops={"arrowstyle": "->", "connectionstyle": "arc3,rad=0.3"},
)