Skip to content

Instantly share code, notes, and snippets.

@philippbayer
Created May 24, 2013 07:01
Show Gist options
  • Select an option

  • Save philippbayer/5641764 to your computer and use it in GitHub Desktop.

Select an option

Save philippbayer/5641764 to your computer and use it in GitHub Desktop.
How to slightly nudge the position of ylabels down
for tick in ax.get_xticklabels():
pos = tick.get_position()
tick.set_position((pos[0], pos[1]-1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment