distributions icon indicating copy to clipboard operation
distributions copied to clipboard

A collection of probability distribution functions

Results 2 distributions issues
Sort by recently updated
recently updated
newest added

Would be great to have support for Infinity in the cdf. So: ``` console.log(normal.inv(1)); // Infinity console.log(normal.cdf(Infinity)); // 1 ``` I think: ``` NormalDistribution.prototype.cdf = function (x) { if (x==Infinity)...

Hey! I was messing around with your library, and I really like it so far. I've been working on a side project and I was trying to make a Pareto...