二项式抽样
二项分布的采样算法
入门
安装
$ npm install binomial-sampling
如何使用
var binomial = require ( 'binomial-sampling' ) ;
// binomial(n, p)
// n is the size of sample
// p is the probability of each test
console . log ( binomial ( 10 , 0.1 ) ) ;
// --> return the value according to binomial distribution
执照
麻省理工学院许可证。 有关详细信息,请参阅许可证文件。
1