Sha256: b94125d3884cc2cd39d9cea6d02ba4e7c0dd77aa9326ce278f4cc595e68f97ec
Contents?: true
Size: 789 Bytes
Versions: 8
Compression:
Stored size: 789 Bytes
Contents
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
Version data entries
8 entries across 8 versions & 1 rubygems