Guest User

Untitled

a guest
Oct 17th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. from matplotlib import pyplot
  2. for y in range(6):
  3. x = [1,2,3,4,5,6]
  4. y1 = [y,y,y,y,y,y]
  5. pyplot.scatter(x,y1,c='b',label = 'test_data')
  6. pyplot.legend()
  7. pyplot.title('test')
  8. pyplot.show()
Add Comment
Please, Sign In to add comment