Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created February 28, 2021 07:56
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 amankharwal/90d00fff28c8921655ee621ecea34339 to your computer and use it in GitHub Desktop.
Save amankharwal/90d00fff28c8921655ee621ecea34339 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
x = [3, 5, 7, 8, 4]
y = [5, 3, 7, 8, 2]
plt.scatter(x, y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment