Skip to content

Instantly share code, notes, and snippets.

@rlabbe
Created July 13, 2015 04:48
Show Gist options
  • Save rlabbe/b12293e6a6e6792f0ff0 to your computer and use it in GitHub Desktop.
Save rlabbe/b12293e6a6e6792f0ff0 to your computer and use it in GitHub Desktop.
Matplotlib equal aspect ratio
import matplotlib.pyplot as plt
ax = plt.gca()
ax.set_aspect('equal')
plt.xlim(-4, 4)
plt.ylim(0, 8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment