Advertisement
Guest User

new

a guest
Nov 20th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. #from matplotlib import import
  2.  
  3. import matplotlib.pyplot as plt
  4.  
  5. x = [1, 2, 2, 3, 4, 4, 4, 4, 4, 5, 5]
  6. plt.hist(x, normed=1)
  7.  
  8. plt.xlabel('valeurs')
  9. plt.ylabel('nombres')
  10. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement