Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created June 29, 2016 18:23
Show Gist options
  • Save manashmandal/f4a3c3db1f2bc2fd7e1a96e2b892ebc7 to your computer and use it in GitHub Desktop.
Save manashmandal/f4a3c3db1f2bc2fd7e1a96e2b892ebc7 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
x = range(0, 10)
y = range(10, 20)
plt.plot(x, y, label='some plot')
plt.legend(loc='lower right')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment