Created
May 31, 2020 14:29
-
-
Save ggouaillardet/a8c8ead0f382a3531ed2b4280f9015e5 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 | |
| import numpy as np | |
| x = np.arange(10) | |
| for i in range(1, 4): | |
| plt.plot(x, i * x**2, label='Group %d' % i) | |
| plt.legend(loc='best') | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment