class MoreMath::Sequence

def variance

Returns the variance of the elements.
def variance
  sum_of_squares / size
end