TheAceHome

Untitled

Apr 2nd, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. interval = [i/100 for i in range(100*min(a1), 100*max(b1))]
  2. vals = []
  3. n=200
  4. for i in interval:
  5. vals.append(scipy.stats.norm(-0.6025489, 1.182711).pdf(i)*n)
  6.  
  7. plt.bar(a1, l, align='center', width=1)
  8. plt.plot(interval, vals, 'r')
  9. plt.show()
Add Comment
Please, Sign In to add comment