binomial-sampling
v0.0.5
Published
Sampling algorithm from binomial distribution
Downloads
9
Readme
binomial-sampling
Sampling algorithm from binomial distribution
Getting started
Install
$ npm install binomial-sampling
How to use
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
LICENSE
MIT License. Please see the LICENSE file for details.