Method: DataLayerProcessorSimpleSmoother#generate_vector

Defined in:
lib/technical_graph/data_layer_processor_simple_smoother.rb

#generate_vectorObject

This vector will be used to process values (Y’es) Use proper simple_smoother_strategy



53
54
55
56
57
58
59
# File 'lib/technical_graph/data_layer_processor_simple_smoother.rb', line 53

def generate_vector
  method = SIMPLE_SMOOTHER_STRATEGIES[@simple_smoother_strategy]
  if method.nil?
    method = SIMPLE_SMOOTHER_STRATEGIES[DEFAULT_SIMPLE_SMOOTHER_STRATEGY]
  end
  return self.send(method)
end