Skip to content

Instantly share code, notes, and snippets.

@daguiam
Created September 25, 2017 13:14
Show Gist options
  • Save daguiam/51d496b01ed5bfabb7203d2b3fa1cf44 to your computer and use it in GitHub Desktop.
Save daguiam/51d496b01ed5bfabb7203d2b3fa1cf44 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
fig, axes = plt.subplots(3, 4, sharex=True, sharey=True)
# add a big axes, hide frame
fig.add_subplot(111, frameon=False)
# hide tick and tick label of the big axes
plt.tick_params(labelcolor='none', top='off', bottom='off', left='off', right='off')
plt.xlabel("common X")
plt.ylabel("common Y")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment