Module: Distribution::Distributable

Included in:
Beta, Binomial, BivariateNormal, ChiSquare, Exponential, F, Gamma, Hypergeometric, LogNormal, Logistic, Normal, Poisson, T, Weibull
Defined in:
lib/distribution.rb

Overview

Magic module

Instance Method Summary collapse

Instance Method Details

#create_distribution_methodsObject

Create methods for each module and add methods to Distribution::Shorthand.

Traverse Distribution.libraries_order adding methods availables for each engine module on the current library

Kids: Metaprogramming trickery! Don’t do at work. This section was created between a very long reunion and a 456 Km. travel



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
# File 'lib/distribution.rb', line 104

def create_distribution_methods
  Distribution.libraries_order.each do |l_name|
    if const_defined? l_name
      l = const_get(l_name)
      # Add methods from engine to base base, if not yet included
      l.singleton_methods.each do |m|
        unless singleton_methods.include? m
          define_method(m) do |*args|
            l.send(m, *args)
          end
          # Add method to Distribution::Shorthand
          sh = const_get(:SHORTHAND)
          Distribution::Shorthand.add_shortcut(sh, m) do |*args|
            l.send(m, *args)
          end

          module_function m
        end
      end
    end
  end
  # create alias for common methods
  alias_method :inverse_cdf, :p_value if singleton_methods.include? :p_value
end