File: chisquare.rb

package info (click to toggle)
ruby-distribution 0.8.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 624 kB
  • sloc: ruby: 4,535; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 765 bytes parent folder | download
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
require 'distribution/chisquare/ruby'
require 'distribution/chisquare/gsl'
require 'distribution/chisquare/statistics2'
require 'distribution/chisquare/java'
module Distribution
  # Calculate cdf and inverse cdf for Chi Square Distribution.
  #
  module ChiSquare
    extend Distributable
    SHORTHAND = 'chisq'
    create_distribution_methods

    ##
    # :singleton-method: pdf(x)
    # Returns PDF of of Chi-squared distribution
    # with +k+ degrees of freedom

    ##
    # :singleton-method: cdf(x,k)
    # Returns the integral of Chi-squared 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
  end
end