# File lib/core/facets/array/variance.rb, line 15
  def variance
    avg = average
    map {|n| (n - avg) ** 2 }.average
  end