Technical things
Friday, April 24, 2020
# # Scatter Graph
import matplotlib.pyplot as plt
x = [1,2,3,4,5,6,7,8]
y = [5,2,4,2,1,4,5,2]
plt.scatter(x, y, label='skitscat', s=200, color='y', marker='*')
plt.xlabel('x')
plt.ylabel('y')
plt.title("Scatter Graph")
plt.show()
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment