module Axiom::Aggregate::Mean::Methods

Public Instance Methods

mean() click to toggle source

Return a mean aggregate function

@example

mean = attribute.mean

@param [Attribute]

@return [Mean]

@api public

# File lib/axiom/aggregate/mean.rb, line 78
def mean
  Mean.new(self)
end