Skip to content

Instantly share code, notes, and snippets.

@davipatti
Created April 23, 2020 18:52
Show Gist options
  • Save davipatti/a4fb0b1e2b425d372416ff3dec8cfc38 to your computer and use it in GitHub Desktop.
Save davipatti/a4fb0b1e2b425d372416ff3dec8cfc38 to your computer and use it in GitHub Desktop.
Matplotlib integer spaced grid
import matplotlib as mpl
import matplotlib.pyplot as plt
ax = plt.gca()
ax.get_xaxis().set_major_locator(mpl.ticker.MultipleLocator(base=1.0))
ax.get_yaxis().set_major_locator(mpl.ticker.MultipleLocator(base=1.0))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment