Advertisement
Guest User

Untitled

a guest
Jul 15th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. %matplotlib inline
  2. import matplotlib.pyplot as plt
  3. from numpy.random import normal
  4. x = normal(size=100)
  5. plt.hist(x, bins=20)
  6. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement