Skip to content

Commit

Permalink
make space for extra subplot
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrue committed Feb 20, 2024
1 parent 8a02a06 commit fb094ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panpipes/python_scripts/batch_correct_scvi.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
vae.history["elbo_train"].plot()
plt.savefig(os.path.join(args.figdir, "scvi_elbo_train.png"))

fig, axs = plt.subplots(nrows=3, ncols=4, figsize=(16,8))
fig, axs = plt.subplots(nrows=4, ncols=4, figsize=(16,10))
axs = axs.ravel()
for i, kk in enumerate(vae.history.keys()):
vae.history[kk].plot(ax=axs[i])
Expand Down

0 comments on commit fb094ff

Please sign in to comment.