Skip to content

Instantly share code, notes, and snippets.

@barrysmyth
Last active November 12, 2023 16:20
Show Gist options
  • Save barrysmyth/fd762eb9ab6395080d7f457c4f164cea to your computer and use it in GitHub Desktop.
Save barrysmyth/fd762eb9ab6395080d7f457c4f164cea to your computer and use it in GitHub Desktop.
from matplotlib.pylab import plt
# Create a 16x8 grid of axes.
fig, axs = plt.subplots(figsize=(4, 10), nrows=16, ncols=8)
# Assign plots to asxes ...
plot_weekly_summary(ax=axs[0, 0], ...)
plot_session_pie(ax=axs[0, 1], ...)
:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment