Go to file
Arthur POULET dd1b6fbb74
update v0.1.2
* fix bug on enumerable calculations
2016-08-19 00:11:50 +02:00
certs init repo 2016-05-05 14:37:25 +02:00
lib update v0.1.2 2016-08-19 00:11:50 +02:00
test update v0.1.2 2016-08-19 00:11:50 +02:00
.gitignore init repo 2016-05-05 14:37:25 +02:00
CHANGELOG update v0.1.2 2016-08-19 00:11:50 +02:00
Gemfile init repo 2016-05-05 14:37:25 +02:00
Gemfile.lock init repo 2016-05-05 14:37:25 +02:00
README.md init repo 2016-05-05 14:37:25 +02:00
Rakefile init repo 2016-05-05 14:37:25 +02:00
binomial_distribution.gemspec init repo 2016-05-05 14:37:25 +02:00
version update v0.1.2 2016-08-19 00:11:50 +02:00

README.md

# A ruby implementation of the Binomial Distribution

Installation

gem install binomial_distribution

or in the Gemfile

gem 'binomial_distribution'

## Usage in Ruby

require 'binomial_distribution'

Math.binomial_distribution(tries: 1, probability: 0.4, success: 1) # => 0.4

Unitary tests

rake test

Contributes !

Find a bug ? Want a new feature ? Create a clear pull request and we'll see :)

  • Nephos (poulet_a)