Widen the axes margin and fix the clipped y label of Fig. 8

The BERT study spans less than one decade, so its log axis carried the
wide "6 x 10^-1" tick labels, which pushed the y label off the canvas.
Give that axis plain decimal ticks and widen the axes margin of every
result figure by the same amount, which keeps the axes box identical
across figures at the 4:3 ratio.
This commit is contained in:
KiHoLee
2026-08-26 19:09:49 +09:00
parent 6c8471ece0
commit 8fe5f499b8
4 changed files with 12 additions and 4 deletions
+1 -1
View File
@@ -209,7 +209,7 @@ def main():
"xtick.minor.width": 0.8, "ytick.minor.width": 0.8,
"xtick.major.size": 4.5, "ytick.major.size": 4.5})
fig = plt.figure(figsize=(5.2, 3.9))
ax = fig.add_axes([0.155, 0.145, 0.82, 0.82])
ax = fig.add_axes([0.185, 0.145, 0.79, 0.79])
xgrid = sorted({int(r["step"]) for r in rows
if r["method"] == "semantic"})
if "digital_genie" in floors: