finished new figure captions

This commit is contained in:
2025-05-23 11:25:53 +02:00
parent 3e07684093
commit 585e5ec27b
6 changed files with 116 additions and 156 deletions

View File

@@ -189,10 +189,10 @@ if __name__ == '__main__':
xthresh = 1.2
ythresh = 1.8
s = plot_style()
fig, axs = plt.subplots(4, 4, cmsize=(s.plot_width, 0.85*s.plot_width),
height_ratios=[1, 1, 0, 1, 0, 1])
fig, axs = plt.subplots(3, 4, cmsize=(s.plot_width, 0.6*s.plot_width),
height_ratios=[1, 1, 0, 1])
fig.subplots_adjust(leftm=7, rightm=9, topm=2, bottomm=4,
wspace=1, hspace=0.8)
wspace=1, hspace=0.6)
for ax in axs.flat:
ax.set_visible(False)
print('Example cells:')
@@ -204,9 +204,9 @@ if __name__ == '__main__':
fig.common_xticks(axs[:2, k])
print()
plot_summary_contrasts(axs[2], s, xthresh, ythresh, model_cell)
plot_summary_diags(axs[3], s, xthresh, ythresh, model_cell)
fig.common_yticks(axs[2, 1:])
fig.common_yticks(axs[3, 1:])
#plot_summary_diags(axs[3], s, xthresh, ythresh, model_cell)
#fig.common_yticks(axs[3, 1:])
fig.tag(axs, xoffs=-4.5, yoffs=1.8)
axs[1, 0].set_visible(False)
fig.savefig()