Guest User

Untitled

a guest
Nov 17th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import matplotlib.pyplot as plt
  2. k = np.array([1, 4, 9, 16, 25, 36, 49, 64])
  3. plt.figure()
  4. y,bins,p=plt.hist(k, edgecolor='black')
  5. print("", y, "\n", bins, "\n", p)
Add Comment
Please, Sign In to add comment