Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Created March 11, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Celia-code/e0e9837c7428be859c90a94efc5ee1f2 to your computer and use it in GitHub Desktop.
Save Celia-code/e0e9837c7428be859c90a94efc5ee1f2 to your computer and use it in GitHub Desktop.
This is for matplotlib
import matplotlib.pyplot as plt
x = [1, 3, 5, 7, 9]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, "-o-")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment