Created
June 29, 2016 18:23
-
-
Save manashmandal/f4a3c3db1f2bc2fd7e1a96e2b892ebc7 to your computer and use it in GitHub Desktop.
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.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