Sha256: e58e3d915ef9ba844556b5def44e4a5e8e7acb6e91060f8071b5cc92fcf55c10
Contents?: true
Size: 756 Bytes
Versions: 1
Compression:
Stored size: 756 Bytes
Contents
require 'distribution/f/ruby' require 'distribution/f/gsl' require 'distribution/f/statistics2' require 'distribution/f/java' module Distribution # Calculate cdf and inverse cdf for F Distribution. # module F SHORTHAND = 'fdist' extend Distributable create_distribution_methods ## # :singleton-method: pdf(x,k1,k2) # Returns the PDF of F distribution # with +k1+ and +k2+ degrees of freedom over [0, +x+] ## # :singleton-method: p_value(qn, k1, k2) # Return the P-value of the corresponding integral +qn+ with # +k1+ and +k2+ degrees of freedom ## # :singleton-method: cdf(x,k1,k2) # Returns the integral of F distribution # with +k1+ and +k2+ degrees of freedom over [0, +x+] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
distribution-0.8.0 | lib/distribution/f.rb |