Created
April 23, 2020 18:52
-
-
Save davipatti/a4fb0b1e2b425d372416ff3dec8cfc38 to your computer and use it in GitHub Desktop.
Matplotlib integer spaced grid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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