# File lib/more/facets/math/variance.rb, line 26 def self.pvariance(array) return 0.0 if array.size < 2 summed_sqdevs(array) / array.size end