More changes based on discussion with Jan and Lukas

This commit is contained in:
nkoch1
2023-04-22 11:24:43 -04:00
parent ea38cddf11
commit a802a9f6d0
12 changed files with 51 additions and 35 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 513 KiB

After

Width:  |  Height:  |  Size: 505 KiB

View File

@@ -124,6 +124,10 @@ def plot_g(ax, df, models, i, let_x, let_y, titlesize=10, letsize=12):
show_spines(ax, spines='lb')
ax.text(let_x, let_y, string.ascii_uppercase[i], transform=ax.transAxes, size=letsize, weight='bold')
ax.set_yscale('log')
ax.set_xlim(-0.5, 9)
from matplotlib.ticker import ScalarFormatter
for axis in [ax.yaxis]:
axis.set_major_formatter(ScalarFormatter())
return ax