Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. const g = require('gamma-distribution');
  2. const c = require('chi-squared');
  3.  
  4. console.log(g.cdf(2, 3, 6));
  5. console.log(c.cdf(2, 3));
  6.  
  7. 0.004817624857647892
  8. 0.4275929370776425
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement