File: ruby.rb

package info (click to toggle)
ruby-distribution 0.7.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 624 kB
  • ctags: 379
  • sloc: ruby: 4,283; makefile: 7
file content (34 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
module Distribution
  module Binomial
    module Ruby_
      class << self
        def pdf(k, n, pr)
          fail 'k>n' if k > n
          Math.binomial_coefficient(n, k) * (pr**k) * (1 - pr)**(n - k)
        end
        # TODO: Use exact_regularized_beta for
        # small values and regularized_beta for bigger ones.
        def cdf(k, n, pr)
          # (0..x.floor).inject(0) {|ac,i| ac+pdf(i,n,pr)}
          Math.regularized_beta(1 - pr, n - k, k + 1)
        end

        def exact_cdf(k, n, pr)
          out = (0..k).inject(0) { |ac, i| ac + pdf(i, n, pr) }
          out = 1 if out > 1.0
          out
        end

        def p_value(prob, n, pr)
          ac = 0
          (0..n).each do |i|
            ac += pdf(i, n, pr)
            return i if prob <= ac
          end
        end

        alias_method :exact_pdf, :pdf
      end
    end
  end
end