Guest User

Untitled

a guest
Jul 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. shape, loc, scale = sm.lognorm.fit(dataToLearn, floc = 0)
  2.  
  3. for b in bounds:
  4. toPlot.append((b, currCount+sm.lognorm.ppf(b, s = shape, loc = loc, scale = scale)))
  5.  
  6. for i, d in enumerate(dataToLearn):
  7. dataToLearn2 += int(w[i] * 100) * [d]
Add Comment
Please, Sign In to add comment