Skip to content

Instantly share code, notes, and snippets.

@jklymak
Last active October 16, 2017 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jklymak/ba25c28ac046c22ebef1384110332881 to your computer and use it in GitHub Desktop.
Save jklymak/ba25c28ac046c22ebef1384110332881 to your computer and use it in GitHub Desktop.
Use setp to modify more than one axis at once....
fig, ax = plt.subplots(3,3)
plt.setp(ax[:,1:], 'yticklabels', '')
plt.setp(ax[:-1,:], 'xticklabels', '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment