Last active
November 12, 2023 16:20
-
-
Save barrysmyth/fd762eb9ab6395080d7f457c4f164cea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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