File: binomial.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 (27 lines) | stat: -rw-r--r-- 705 bytes parent folder | download | duplicates (3)
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
require 'distribution/binomial/ruby'
require 'distribution/binomial/gsl'
require 'distribution/binomial/java'
module Distribution
  # Calculate statisticals for Binomial Distribution.
  module Binomial
    SHORTHAND = 'bino'

    extend Distributable
    create_distribution_methods

    ##
    # :singleton-method: pdf(x,k)
    # Returns the integral of T distribution
    # with +k+ degrees of freedom over [0, +x+]

    ##
    # :singleton-method: p_value(qn, k)
    # Return the P-value of the corresponding integral +qn+ with
    # +k+ degrees of freedom

    ##
    # :singleton-method: cdf(x,k)
    # Returns the integral of T distribution
    # with +k+ degrees of freedom over [0, +x+]
  end
end