Advertisement
Guest User

plot de puntos

a guest
Apr 28th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4. import matplotlib.pyplot as plt
  5.  
  6. data = [
  7. (-7618.55, -72882.1),
  8. (-7619.64, -72882.1),
  9. (-7618.55, -72882.3),
  10. ]
  11.  
  12.  
  13. if __name__ == "__main__":
  14.     plt.plot([d[0] for d in data], [d[1] for d in data], 'go-')
  15.  
  16.     plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement