Skip to content

Instantly share code, notes, and snippets.

@jeromew21
Created October 28, 2020 07:51
Show Gist options
  • Save jeromew21/eebebef1c7f77d21fe5dc1ae754ad344 to your computer and use it in GitHub Desktop.
Save jeromew21/eebebef1c7f77d21fe5dc1ae754ad344 to your computer and use it in GitHub Desktop.
w, h = 8, 8
fig, ax = plt.subplots(w, h, sharex='col', sharey='row', figsize=(20,20))
for i in range(w*h):
a = ax[i//h][i%w]
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment